﻿$(function(){	
		   


	//菜单效果
	$("#menu > div").hover(
	  function () {
		 var obj= $(this).find(".show_sub");
		 if(obj.is(":hidden")){
			obj.slideDown(300);
		 }
	  },function () {
		 $(this).find(".show_sub").slideUp(300);
	  }
	); 

	$("#top_fav ul li:eq(2)").hover(
	  function () {
        $("#shopping_car").show();
	  },function () {
        $("#shopping_car").hide();
	  }
	); 
	$("#shopping_car").hover(
	  function () {
        $(this).show();
	  },function () {
        $(this).hide();
	  }
	); 
	
	
});




