$(document).ready(function(){	
	
	$("#Menu ul li a").hover(
		function(){
			$(this).animate({ 
				width: "185px",
				color: "#CF651A",
				paddingLeft: "10px"
			}, 200);
		},
		function(){
			$(this).animate({ 
				width: "190px",
				color: "#2C687A",
				paddingLeft: "5px"
			}, 200);
		});
	
	$('.DHTML .btFechar').click(function(){
		$(this).parent().fadeOut('normal', function(){
			$(this).remove();
		});
	});
	
});
