var desplegarIdiomaId = null;

jQuery(document).ready( function(){
	jQuery('#idioma a.desplegable').hide();
    jQuery('#idioma').hover( desplega, programaRecoger );
});
function desplega() {
	if (desplegarIdiomaId != null)  {
		clearTimeout(desplegarIdiomaId);
	}
	jQuery('#idioma a.desplegable').slideDown(200);
}
function programaRecoger() {
    desplegarIdiomaId = setTimeout("jQuery('#idioma a.desplegable').slideUp(200);desplegarIdiomaId=null",400);
}

