$(document).ready(function() {
						   
	$("[id|=sub]").hide();
	$("h5[id|=opt]").mouseenter(function(){
		

		$("#sub-" + this.id.replace("opt-","")).fadeIn();
		return false;
	});
	$("div[id|=sub]").mouseout(function(){
		$(this).fadeOut();
		
		return false;
	});
	
			
	$(".closeBox").click(function(){		
		$(".balao").hide();				
	});			
});						
$(window).load(function() {
	$(".balao").show();								   	
});
