$(function(){
	$('.hoy').hover( function()
	{
		$(this).next().children('.fecha').hide();
		$(this).next().children('.manifiesto').show();
	}, function() {
		$(this).next().children('.fecha').show();
		$(this).next().children('.manifiesto').hide();
	});

	$("#altRSS, #altWidget, #altFacebook").css("display", "none");

	$(".ico_entuBlogSemanal").hover( function()
	{
		$("#altWidget").show();
	}, function() {
		$("#altWidget").hide();
	});


	$(".ico_rss").hover( function()
	{
		$("#altRSS").show();
	}, function() {
		$("#altRSS").hide();
	});

	$(".ico_facebook").hover( function()
	{
		$("#altFacebook").show();
	}, function() {
		$("#altFacebook").hide();
	});



	$('.contacta').click(function(){
		var width = 425;
		var height = 290;
		var left = (screen.width/2)-(width/2);
		var top = (screen.height/2)-(height/2);

		window.open(this.href,'Contacto_Legal', "toolbar=0,width="+ width +",height="+ height +",resizable=no,scrollbars=1,top="+ top +" , left="+ left +")");
		return false;
	});

});