$(function(){
$('.MenuImoveis ul').hide() /* Declarando para o menu começar fechado*/ 
$(".MenuImoveis li").hover(function(){
	$(this).children("ul").css('display','block');
},function(){
	$(this).children("ul").css('display','none');
})


$(".ItemMenuApto a").hover(function(){
	$(this).addClass("HoverApto");
	
	$(".ItemMenuApto ul").hover(function(){
		$(".ItemMenuApto a").addClass("HoverApto");
	
	},function(){
		$(".ItemMenuApto a").removeClass("HoverApto");
	})

},function(){
	$(this).removeClass("HoverApto");
})

$(".ItemMenuCasa a").hover(function(){
	$(this).addClass("HoverCasa");
	
	$(".ItemMenuCasa ul").hover(function(){
		$(".ItemMenuCasa a").addClass("HoverCasa");
	
	},function(){
		$(".ItemMenuCasa a").removeClass("HoverCasa");
	})

},function(){
	$(this).removeClass("HoverCasa");
})

$(".ItemMenuRural a").hover(function(){
	$(this).addClass("HoverRural");
	
	$(".ItemMenuRural ul").hover(function(){
		$(".ItemMenuRural a").addClass("HoverRural");
	
	},function(){
		$(".ItemMenuRural a").removeClass("HoverRural");
	})

},function(){
	$(this).removeClass("HoverRural");
})

});

