// Menu dropdown

$(document).ready( function() {
	
	/* Mostrar dropdown */
	$('ul#menuGlobal li.dropable').hover( function() { $('ul:first', this).show(); }, function() {	$('ul', this).hide();
																									$('ul#menuGlobal li a#itemInstitucional').css({backgroundColor:'#fff', color:'#861707'});
																									$('ul#menuGlobal li a#itemProjetosCustomizados').css({backgroundColor:'#fff', color:'#861707'});
																									$('ul#menuGlobal li a#itemMbaExecutivo').css({backgroundColor:'#fff', color:'#861707'})
																								 } ); 

	/* Deixar secao menu ativa ao dar over nos itens que tem drop */
	$('ul#menuGlobal li a#itemInstitucional').hover( function() { $(this).css({backgroundColor:'#155e87', color:'#fff'});}, function() { $('ul#menuGlobal').css({backgroundColor:'#fff', color:'#861707'})});
	$('ul#menuGlobal li a#itemProjetosCustomizados').hover( function() { $(this).css({backgroundColor:'#155e87', color:'#fff'});}, function() { $('ul#menuGlobal').css({backgroundColor:'#fff', color:'#861707'})});
	$('ul#menuGlobal li a#itemMbaExecutivo').hover( function() { $(this).css({backgroundColor:'#155e87', color:'#fff'});}, function() { $('ul#menuGlobal').css({backgroundColor:'#fff', color:'#861707'})});
	
});