var initAll = {

	init: function() {
		initAll.aRedirectUrl = "http://www.thairesan.se/public/rss/rss_pop.php";
		initAll.aClickable();
	},

	/* Makes the articles clickable */
	aClickable: function() {
		//var msg = "";
		var wraper = document.getElementById("awrap");
		if(!wraper) {
			return false;
		}

		var arr = wraper.getElementsByTagName("div");
		for(var i = 0; i < arr.length; i++) {
			if(arr[i].id) {
				Core.addEventListener(arr[i], "click", initAll.aPop);
				Core.addEventListener(arr[i], "mouseover", initAll.aOver);
				Core.addEventListener(arr[i], "mouseout", initAll.aOut);
			}
		}
	},
	
	/* Opens up a new window for aritcle to be redirected */
	aPop: function() {
		var u = initAll.aRedirectUrl + "?checksum=" + this.id;
		window.open(u, "aExt", "width=650, height=400, location=no, menubar=no, resizable=1, scrollbars=1, status=no, titlebar=no, toolbar=no");
	},
	/* Opens up a new window for aritcle to be redirected */
	aOver: function() {
		this.className = 'lasmer_over';
	},
	/* Opens up a new window for aritcle to be redirected */
	aOut: function() {
		this.className = 'lasmer';
	},
	
	wEmail: function() {
		var u = initAll.aRedirectUrl + "?checksum=" + this.id;
		window.open(u, "aExt", "width=650, height=400, location=no, menubar=no, resizable=1, scrollbars=1, status=no, titlebar=no, toolbar=no");
	}

};

Core.start(initAll);
