
$(document).ready(function(){
	
	$("#homeSubNavBox .navWrap1").hover(
		function(){ $(this).addClass("hover"); },
		function(){ $(this).removeClass("hover"); }
	);
	
	$("#homeSubNavBox .navWrap2").hover(
		function(){ $(this).addClass("hover"); },
		function(){ $(this).removeClass("hover"); }
	);
	
	$("#homeSubNavBox .navWrap3").hover(
		function(){ $(this).addClass("hover"); },
		function(){ $(this).removeClass("hover"); }
	);
	
});


