


$(document).ready(function(){

//header myaccount
$("#mybar #myaccount").children("a").click(
	function () {
		var m;
		m = $(this).siblings(".model")
		if (!m.is(".h")){
			m.addClass("h");
		}else {m.removeClass("h");}
		
	}
); 

//nav 
$("#nav ul").children("li").hover(
	function () {
		$(this).addClass("h");
	},
	function () {
		$(this).removeClass("h");
	}
); 

// nav_category 
$("#nav_category ul").children("li").hover(
	function () {
		$(this).children("a").addClass("hover");
		$(this).addClass("h");
	},
	function () {
		$(this).children("a").removeClass("hover");
		$(this).removeClass("h");
	}
); 

// search 
$("#searchkey").focus(function(){  
	if($(this).attr("value") == "搜索") $(this).attr("value", ""); 
});  
$("#searchkey").blur(function(){  
	if($(this).attr("value") == "") $(this).attr("value", "搜索"); 
});  



}); 




