$(document).ready(function(){
	$("#new").mouseover(function(){
		$("#new").removeClass("off");		
		$("#new").addClass("on");
		$("#free").removeClass("on");
		$("#free").addClass("off");
		$("#hot").removeClass("on");
		$("#hot").addClass("off");
		$("#feat").removeClass("on");
		$("#feat").addClass("off");
		$("#NewArrival").removeClass("hide");
		$("#NewArrival").addClass("show");
		$("#FreeShipping").removeClass("show");
		$("#FreeShipping").addClass("hide");
		$("#HotProducts").removeClass("show");
		$("#HotProducts").addClass("hide");
		$("#Special").removeClass("show");
		$("#Special").addClass("hide");
	});
	
	$("#free").mouseover(function(){
		$("#free").removeClass("off");
		$("#free").addClass("on");
		$("#new").removeClass("on");
		$("#new").addClass("off");
		$("#hot").removeClass("on");
		$("#hot").addClass("off");
		$("#feat").removeClass("on");
		$("#feat").addClass("off");
		$("#FreeShipping").removeClass("hide");
		$("#FreeShipping").addClass("show");
		$("#NewArrival").removeClass("show");
		$("#NewArrival").addClass("hide");
		$("#HotProducts").removeClass("show");
		$("#HotProducts").addClass("hide");
		$("#Special").removeClass("show");
		$("#Special").addClass("hide");
		
	});	
	$("#hot").mouseover(function(){
		$("#hot").removeClass("off");
		$("#hot").addClass("on");
		$("#new").removeClass("on");
		$("#new").addClass("off");
		$("#free").removeClass("on");
		$("#free").addClass("off");
		$("#feat").removeClass("on");
		$("#feat").addClass("off");
		$("#HotProducts").removeClass("hide");
		$("#HotProducts").addClass("show");
		$("#NewArrival").removeClass("show");
		$("#NewArrival").addClass("hide");
		$("#FreeShipping").removeClass("show");
		$("#FreeShipping").addClass("hide");
		$("#Special").removeClass("show");
		$("#Special").addClass("hide");
		
	});	
	$("#feat").mouseover(function(){
		$("#feat").removeClass("off");
		$("#feat").addClass("on");
		$("#new").removeClass("on");
		$("#new").addClass("off");
		$("#free").removeClass("on");
		$("#free").addClass("off");
		$("#hot").removeClass("on");
		$("#hot").addClass("off");
		$("#Special").removeClass("hide");
		$("#Special").addClass("show");
		$("#NewArrival").removeClass("show");
		$("#NewArrival").addClass("hide");
		$("#FreeShipping").removeClass("show");
		$("#FreeShipping").addClass("hide");
		$("#HotProducts").removeClass("show");
		$("#HotProducts").addClass("hide");
		
	});	
});


