function mostrar() {
	$("#pop").fadeIn('slow');
	$("#cerrar").fadeIn('slow');
	}

function cerrar() { 
   $("#pop").fadeOut('slow');
   $("#cerrar").fadeOut('slow');
}
	
$(document).ready(function () {
	//conseguir valores de la img 
	var img_w = $("#pop img").width() + 20;
	var img_h = $("#pop img").height() + 30;
	
	//darle el alto y ancho
	$("#pop").css('width', img_w + 'px');
	$("#pop").css('height', img_h + 'px');
	
	//esconder el popup
	$("#pop").hide();
	
	//consigue valores de la ventana del navegador
	var w = $(this).width();
	var h = $(this).height();
	
	//centra el popup
	w = (w/2) - (img_w/2);
	h = (h/2) - (img_h/2);
	$("#pop").css("left",w + "px");
	$("#pop").css("top",h + "px");
	
	//temporizadores, para que no aparezca de golpe y cerrar
	setTimeout("cerrar()",30000);
	setTimeout("mostrar()",5000);
	
	//función para cerrar el popup 
	$("#cerrar").click(function () {
		$(this).fadeOut('slow');
		$("#pop").fadeOut('slow');
		});
	$("#pop").click(function () {
		$(this).fadeOut('slow');
		$("#cerrar").fadeOut('slow');
		});
	});