// JavaScript Document

function mostrar() { 
$(".contenedor-pop").fadeIn('slow'); 
}
$(document).ready(function (){
jQuery('.back').css("opacity",0.8)
setTimeout("mostrar()",1000);
$(".contenedor-pop").click(function (){ 
$(this).fadeOut('slow'); 
});
});
