$(document).ready(function(){
	$(".desplegable ul").hide();
	
	$(".desplegable").hover(
	function(){	$(this).find("ul").show();},
	// $(this).find('.images > .anim').show();

	function(){	$(this).find("ul").hide();}
	)
	
	
	$("#idiomas").hover(
						function(){$("#idiomas").css({'width':'310px'}); },
						function(){$("#idiomas").css({'width':'110px'}); }
								 );
})