jQuery(function(){
	$(".list_wish tr:last").addClass("last");
	$(".list_dotted tr:last").addClass("last");
	$('.gnb>li')
		.mouseover(function() {
			$(this).css("height","246px");
			$(this).css("cursor","pointer");
			$(this).children("ul").css("display","block");
		})
		.mouseout(function(){
			$(this).css("height","22px");
			$(this).children("ul").css("display","none");
		});
	$('.search>.brand>span')
		.click(function() {
			$(this).parent(".brand").toggleClass("open");
		});
});


