
var udom = document.domain;
var ufac = '';
var ucat = '';
var umenu = '';
var utitle = '';
var fcat = '';
if (udom.match('alumni.sitesuite.ws')) {
    ufac = 'alumni';
    ucat = '27190';
    fcat = '27214';
    umenu = 'alumniandfriends';
    utitle = 'Alumni and Friends';
}
else if (udom.match('alumni.usydestore.com.au')) {
    ufac = 'alumni';
    ucat = '27190';
    fcat = '27214';
    umenu = 'alumni';
    utitle = 'Alumni and Friends';
}
else if (udom.match('alumni.sydneyestore.com.au')) {
    ufac = 'alumni';
    ucat = '27190';
    fcat = '27214';
    umenu = 'alumni';
    utitle = 'Alumni and Friends';
}

jQuery(function() {
    jQuery("#facultyName").text(utitle);
	jQuery(".locationName").text(utitle);
    jQuery("#storenav ul").hide();
    jQuery(".topmenu").hide();
    jQuery("#top_cat_"+umenu).show();
    jQuery("#topmenu"+ufac).show();
    jQuery("#storecat").val(ucat);
    if (fcat != '') {
        //jQuery("#featuredMain").load("/cat/index.cgi/shopfront/view_by_category?featured=1&category_id="+fcat);

		$.ajax({
		   type: "GET",
		   url: "/cat/index.cgi/shopfront/view_by_category",
		   data: "featured=1&category_id="+fcat,
		   success: function(data){
		
			$('#featuredMain').html(data);
		
			$('#featuredMain a').each(function(i){
				var href = $(this).attr('href');
				if (!(href.match('https')))
				{
					var host_name = "" + window.location.host;
					var new_href = href.replace('http://' + host_name, '');
					var new_host_name = host_name.replace('www.', '');
					var absolute = "https://" + new_host_name + new_href;
					$(this).attr('href', absolute);
				}
			 });			
		   }
		 });

    }
    if (ucat != '') {
        jQuery("#articles_body").load("/plugins/newsfeed.cgi?rm=teaser;ajax=1");
    }



});


