jQuery(document).ready(function($){
	

   $('.search_title').click(function(){
	   $('.show_search').slideToggle(250);
	});
	
	// cart
	$('.cart_title').click(function(){
	    $('.show_cart').slideToggle(250);
	});
	
	// duc edit
	$(".menu-tip a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	}); 

	$('.item1 a.link').click(function(){
			
			if($(this).next().is(':hidden')){
			$('.item2').hide();
			 $(this).next().show(10);
			} else {
			  $(this).next().hide();
			}  
	});
	$('.item2 li a').click(function(){
	if($(this).next().is(':hidden')){
		$('.item2 li .show-link').hide();
		$(this).next().show(10);
	} else {
		$(this).next().hide();
		//$(this).prev().hide();
		}
	});

});


