function initHome () {
	
	// HomePage Tabs and Load External Pages
    $(".external_content_load_wrapper").load("nhome_StealofTheDay.asp");
	//section 2 tabs
	$("#s2_tab>ul>li").first().addClass("s2_tab_active");
	$("#s2_viewall_btn").css("display", "none");
	$("#s2_tab>ul>li").each(
		function (index) {
		    $(this).click(
			 function () {
			     $(".s2_tab_active").removeClass("s2_tab_active");
			     $(this).addClass("s2_tab_active");

			     if (index == 0) {
			         $("#s2_viewall_btn").fadeOut("fast");
			         d = new Date(); 
			         $(".external_content_load_wrapper").load("nhome_StealofTheDay.asp"); 
			     }
			     else if (index == 1) {
			         $("#s2_viewall_btn").fadeIn("fast");
			         $("#s2_viewall_btn > a").attr("href", "http://www.topbuy.com.au/tbcart/pc/Promotional-Offers-c243.htm");
			         $("#s2_viewall_btn > a > img").attr("src", "tbcart/pc/images/layout/s2_tab_viewall_btn_promotion.png");
			         $(".external_content_load_wrapper").load("nhome_SpecialCategory.asp", { idcategory: 243 });
			     }
			     else if (index == 2) {
			         $("#s2_viewall_btn").fadeIn("fast");
			         $("#s2_viewall_btn > a").attr("href", "http://www.topbuy.com.au/tbcart/pc/New-Arrivals-c273.htm");
			         $("#s2_viewall_btn > a > img").attr("src", "tbcart/pc/images/layout/s2_tab_viewall_btn_new.png");
			         $(".external_content_load_wrapper").load("nhome_SpecialCategory.asp", { idcategory: 273 });
			     }
			     else if (index == 3) {
			         $("#s2_viewall_btn").fadeIn("fast");
			         $("#s2_viewall_btn > a").attr("href", "http://www.topbuy.com.au/tbcart/pc/Clearance-Bin-c274.htm");
			         $("#s2_viewall_btn > a > img").attr("src", "tbcart/pc/images/layout/s2_tab_viewall_btn_clearance.png");
			         $(".external_content_load_wrapper").load("nhome_SpecialCategory.asp", { idcategory: 274 });
			     }
			 }
		   );
		}
	);
	
	//-----------------------shop with confidence style control -----------------------//
	$("#section4 a:nth-child(4) > img").css("margin-right", "0px");
	
	//----------------------- home recommendation -----------------------//
   // show/hide product info box
   $("div.recommendation-infobox").hide();
   $("div.recommendation-wrapper .recommendation-cell").each(function(i){
       $(this).children("a").hover(
		 function(){$(this).next("div.recommendation-price").next("div.recommendation-infobox").fadeIn("fast");},
		 function(){$(this).next("div.recommendation-price").next("div.recommendation-infobox").fadeOut("fast");}
	    );
	   var j=i+1;
	   if (j<5){
		   $(this).children("div.recommendation-infobox").css({"background":"url(tbcart/pc/images/layout/recommendation_bg.png) no-repeat", "left":j*123-10+"px"});
		   $(this).children("div.recommendation-infobox").children("table").css("margin", "12px 0 0 21px");
	   }
	   else {
		   $(this).children("div.recommendation-infobox").css({"background":"url(tbcart/pc/images/layout/recommendation_bg_r.png) no-repeat", "left":j*123-354+"px"});
		   $(this).children("div.recommendation-infobox").children("table").css("margin", "12px 0 0 10px");
	   }
	   
	   }
   );
}
