addLoadEvent(initHomePopup);

function initHomePopup() {
	var homePopup = document.getElementById("homePopup");
	var links = homePopup.getElementsByTagName("a");
	for (var i=0; i<links.length; i++) {
		if (links[i].className.indexOf("homePopupClose") != -1) {
			links[i].onclick = function() {
				remClass(homePopup, "show");
				//createCookie("homePopupViewed", "true", 10);
			}
		}
		if (links[i].className.indexOf("image") != -1 ) {
			links[i].onclick = function() {
				remClass(homePopup, "show");
				//createCookie("homePopupViewed", "true", 10);
			}
		}
	}
	
	//if( !readCookie("homePopupViewed") ) {
		addClass(homePopup, "show");
	//}
}