$(document).ready(function() {
						   
/* POPUP CARGADOR*/
/*cookie*/
function getCookie(nombre){
	if(document.cookie.length>0)
	{
	start=document.cookie.indexOf(nombre + "=");
	if (start!=-1)
	{
	start=start + nombre.length+1; 
	end=document.cookie.indexOf(";",start);
	if (end==-1)
	end=document.cookie.length;
	return unescape(document.cookie.substring(start,end));
	}
	}
	return "";
	}

if (getCookie('popup') !="yes"){
$(document).ready(function(){$(".contenedor_popup").css("display", "block");});
$(document).ready(function(){$(".contenido_popup").show("slow");});
$(document).ready(function(){$(".cerrar_popup").show("slow");});
$(".contenedor_popup").click(function(){$(".contenedor_popup").css("display", "none");});
$(".cerrar_popup").click(function(){$(".contenedor_popup").css("display", "none");});
document.cookie = "popup=yes";
}


});
