$(document).ready(function(){
	if($("#special_offers").text() != "" && $("#top_products").text() != "")
	{
		$("#top_products").hide();
		
		$("#special_offers_label").click(function(){
			$("#top_products").hide();
			$("#special_offers").show();
			$("#special_offers_label").attr("class","active");
			$("#top_products_label").removeAttr("class");	
		});
		
		$("#top_products_label").click(function(){
			$("#special_offers").hide();
			$("#top_products").show();
			$("#top_products_label").attr("class","active");
			$("#special_offers_label").removeAttr("class");	
		});
			
	}
});