/**
 * @author Locke117
 */

 function menu(obj){
 	if(!obj.length) return;
	jQuery(obj).find(".subNaviBig, .subNaviSmall").css({display: "none"});
	jQuery(obj).hover(function(){
		jQuery(this).find(".subNaviSmall").stop(true, true).fadeIn(0);	
		jQuery(this).find(".subNaviBig").stop(true, true).fadeIn(0);
		jQuery(this).find(".menu_a").stop(true, true).css("background-image", "url(/WebRoot/StoreTypes/6.12.3/Store/img_Design2012/b2.png)");
		jQuery(this).find(".menu_b").stop(true, true).css("background-image", "url(/WebRoot/StoreTypes/6.12.3/Store/img_Design2012/b2.png)")
		jQuery(this).find(".menu_c").stop(true, true).css("background-image", "url(/WebRoot/StoreTypes/6.12.3/Store/img_Design2012/d2.png)")
		jQuery(this).find(".menu_d").stop(true, true).css("background-image", "url(/WebRoot/StoreTypes/6.12.3/Store/img_Design2012/d2.png)")
		jQuery(this).find(".menu_e").stop(true, true).css("background-image", "url(/WebRoot/StoreTypes/6.12.3/Store/img_Design2012/d2.png)")
	}, 
	
	function(){
		jQuery(this).find(".subNaviBig").fadeOut(0);
		jQuery(this).find(".subNaviSmall").fadeOut(0);
		jQuery(this).find(".menu_a").stop(true, true).css("background-image", "");
		jQuery(this).find(".menu_b").stop(true, true).css("background-image", "");
		jQuery(this).find(".menu_c").stop(true, true).css("background-image", "");
		jQuery(this).find(".menu_d").stop(true, true).css("background-image", "");
		jQuery(this).find(".menu_e").stop(true, true).css("background-image", "");
	});
 } 
 
 
 jQuery(document).ready(function(){ 
 	menu(jQuery("ul li"));
 });

