	$(document).ready(function() {
	
		$(".catalogy").click(function(){
			$(this).parent("ul").find("a").removeClass("mv-li-active");
			$(this).parent("ul").siblings().find("a").removeClass("mv-li-active");
			$(this).children("a").addClass("mv-li-active");
			$(this).children("ul").slideToggle("slow");
			return false;
			
		})
		
		$(".tovar").click(function(){
			$(this).parent("ul").find("a").removeClass("mv-li-active");
			$(this).find("a").toggleClass("mv-li-active");
			var id = $(this).find("a").attr("id");
			document.location.href = "/site/tovar/id/"+id;
			return false;
			
		})
		
		$("#zakaz").click(function(){
			$("#order").animate({opacity: "show", top: "20"},"slow");
		})
		
		$("#mail").click(function(){
			$("#mail").hide();
			$("#mail_table").slideToggle("slow");
			return false;
		})
		
		$("#cancel").click(function(){
			$("#mail_table").slideUp("slow");
			$("#mail").show();
		})
		
		$("#cancel").click(function(){
			$("#order").animate({opacity: "hide", top: "-25"},"slow");
		})
		
		$("#dellete").click(function(){
			var answer = confirm("Удалить из корзины?")
		    if (answer){
		        document.messages.submit();
		    }
		    else {
		    	return false;
		    }
		})
		
		
});
	
	
	
