$(document).ready(function(){
	$(".banner").find(".pic_button_color").css({opacity: 0});

	$(".banner").hover(function(){
		$(this).stop().animate({marginTop: "0px"},500).find(".button").stop().animate({backgroundColor: "#403e42"},500);
		$(this).find(".menu_text").stop().animate({marginLeft: "10px"},500);
		$(this).find(".pic_button_color").stop().animate({opacity: 1},500);
	},function(){
		$(this).stop().animate({marginTop: "0px"},300).find(".button").stop().animate({backgroundColor: "#302e32"},300);
		$(this).find(".menu_text").stop().animate({marginLeft: "0px"},300);
		$(this).find(".pic_button_color").stop().animate({opacity: 0},300);
	});

	$("ul.top_catalog li .l1").click(function(){
		$(this).parent("li").find("ul").slideToggle(500);
	});
});
