hit0 = new Image();
hit0.src = "/images/hit.png";

hit1 = new Image();
hit1.src = "/images/hita.png";

hit2 = new Image();
hit2.src = "/images/hitt.png";

function sendHit(id) {
	var url = "http://www.hithaber.com/hit.php";
	var params = "id=" + id;
	var ajax = new Ajax.Updater({success: ("hit" + id)}, url, {method: "get", parameters: params});
}

function hitMouseOver(iname) {
	document[iname].src = hit1.src;
}

function hitMouseOut(iname) {
	document[iname].src = hit0.src;
}

