$(document).ready(function(){	
	
	$("#Menu ul li a").hoverIntent(
		function(){
			colorInic = $(this).css("backgroundColor");
			
			$(this).animate({ 
				backgroundColor: "#925147",
				color: "#FFFFFF"
			}, 200);
		},
		function(){
			$(this).animate({ 
				backgroundColor: colorInic,
				color: "#5C2A29"
			}, 200);
		});
	
	//Menu Drop-Down
	
	$("#Menu ul li ul").hide();
	$("#Menu ul li:has(ul)").hoverIntent(function() {
		$("ul:first", this).show("fast"); 
	}, function() {
		$("ul:first", this).hide("fast"); 
	});
	
	//Produtos

	$("#Produtos li").hoverIntent(function() {
		$(this).animate({backgroundColor: '#F9F1F1'},500);
	}, function() {
		$(this).animate({backgroundColor: '#FFFFFF'},500);
	});
	
});
