function initMenus() {
	$('.descricao').hide();
	$('.menuHeader').hover(
		function() {
			$(this).css({'border-top':'2px dashed white', 'color':'white'});
			$(this).prev().slideToggle();
			return false;
		}
	);
	$('.menuHeader').mouseout(
		function() {
			$(this).css({'border-top':'2px dashed #76EE00', 'color':'#76EE00'});
			$(this).prev().slideToggle();
			return false;
		}
	);
}
$(document).ready(function() {initMenus();});