var harvestLinks = {

	init: function() {

		var lks = document.getElementsByTagName("p");
		for(var i = 0; i < lks.length; i++) {

			if(lks[i].id != false) {
				lks[i].onmouseover = harvestLinks.mouseOverHandler;
				lks[i].onmouseout = harvestLinks.mouseOutHandler;
				lks[i].onclick = harvestLinks.clickHandler;
			} else {
				//return false;
			}
			
		}

		var lks = document.getElementsByTagName("h2");
		for(var i = 0; i < lks.length; i++) {

			if(lks[i].id != false) {
				lks[i].style.borderBottom = "1px dashed #99c949";
				lks[i].onmouseover = harvestLinks.mouseOverHandlerH2;
				lks[i].onmouseout = harvestLinks.mouseOutHandlerH2;
				lks[i].onclick = harvestLinks.clickHandler;
			} else {
				//return false;
			}
			
		}


		return false;

	},

	clickHandler: function() {
		if(this.id == 'root') {
			window.location.href = "http://www.thailandblogs.net/";
		} else {
			window.location.href = "http://www.thailandblogs.net/" + this.id + ".php";
		}

	},
	
	mouseOverHandler: function() {
		this.style.color = "#99c949";
		this.style.cursor = "pointer";
		return false;
		
	},
	
	mouseOutHandler: function() {
		this.style.color = "#8F8A6B";
		return false;
	},	
	
	mouseOverHandlerH2: function() {
		this.style.color = "#49C9B9";
		this.style.borderColor = "#49C9B9";
		this.style.cursor = "pointer";
		return false;
		
	},
	
	mouseOutHandlerH2: function() {
		this.style.borderColor = "#99c949";
		this.style.color = "#99c949";
		return false;
	}		

	//Core.addEventListener(element, "event", linkListener);
	//Core.start(linkListener);
};

Core.start(harvestLinks);
