$(document).ready(function(){
	$('#logo').click(function() { window.location = "http://vitmmp.com/site/"; });
        $('#milk, #meat').hide();

	    $('#milk, #meat').hover(function(){
        	$(this).show();
        	$(this).parent().find('#bmilk, #bmeat').css({background: "#d67777", color: "#ffffff"});
	    },function(){
	        $(this).hide();
        	$(this).parent().find('#bmilk, #bmeat').css({background: "#ffe6d1", color: "#d67777"});
	    });

        $('#bmilk, #bmeat, .btn').button();
        $('#bmilk, #bmeat').click(function() { return false; });

	$('.btn').css({background: "#ffffff", color: "#d67777", border: "1px silver solid" });


        $('#bmilk, #bmeat').css({background: "#ffe6d1", color: "#d67777", border: "0"});
        $('#bmilk, #bmeat').hover(function(){
        	$(this).css({background: "#d67777", color: "#ffffff"});
        	$(this).parent().find('div').show("silde");
	    },function(){
	        $(this).css({background: "#ffe6d1", color: "#d67777"});
	        $(this).parent().find('#milk, #meat').hide();
	    });

		$('#leftmenu a.left_menu').hover(function(){
        	$(this).button();
        	$(this).css({color: "#ffffff"});
	    },function(){
	    	$(this).css({color: "#2aa639"});
	        $(this).button("destroy");
	    });
	    $('#leftmenu a.left_menu').css({border: "0"});
	});
