function setTimer(){ window.setTimeout(setPopup, 2500); }
function setPopup(){ showPopupLayer(); }

function showPopupLayer(){
		
	$("#horizon").show(); $("#blend").show().animate({opacity:0.80});
	//$("#horizon, #blend").show();
	
if(typeof(window.iehide) == "function") { iehide(); }  
	
	$("#popupLayer").hide().slideDown(700);
	
}

function hidePopupLayer(){
	document.getElementById('blend').style.display="none";
	document.getElementById('horizon').style.display="none";
}
