/* 	MENU DESPLEGABLES
	- cuando entra el rat—n en el li, se muestra.
*/
$(document).ready(function(){
			$('ul.desplegable li:has(ul)').hover(
				function(e){
					$(this).find('ul').fadeIn();
				},
				function(e){
					$(this).find('ul').fadeOut();
				}
			);
		});
		
/* MOSTRAR Y OCULTAR NOTICIAS */
function mostrarNoticias(id){
	$('div.'+id).slideToggle();
}
/* SHARE
	- al pasar el mouse por encima, muestra la capa al completo.
	- al sacarlo, lo mete de nuevo por la derecha
*/
$(document).ready(function(){
	$('#share').hover(
		function(e){
			$(this).animate({
				right: "-1px"
			});
		},
		function(e){
			$(this).animate({
				right: "-150px"
			});
		}
	);
});
