$(function(){
$('#SubMenuCasaCondominio').hide() /* Declarando para o menu começar fechado*/ 
$("#ItemCondominios").hover(function(){
	$("#ItemCondominios a").addClass('BackgroundHover');
	$(this).children("ul").show();
},function(){
	$(this).children("ul").hide();
	$("#ItemCondominios a").removeClass('BackgroundHover');
})


});
