// JavaScript Document
//MENU DESPLEGABLE//
	$(document).ready(
	function(){
	$('ul#globalnav li').hover(entrada,salida);
	})
 	function entrada(){
	$(this).find('a:first').addClass($(this).attr('id')+'_over');
	$(this).children().next().fadeIn();
	}
	function salida(){
	$(this).find('a:first').removeClass($(this).attr('id')+'_over');
	$(this).children().next().fadeOut();
	}
	
