function newsItemLatestOver(o) {
	o.className += " over";
}
function newsItemLatestOut(o) {
	var oc = ""+o.className;
	while(oc.indexOf("over")>-1) {
		oc = oc.substring(0, oc.indexOf("over"))+oc.substring(oc.indexOf("over")+4, oc.length);
	}
	o.className = oc;
}
function newsItemLatestClick(o) {
	var as = o.getElementsByTagName("a");
	if (as.length > 0) { document.location.href = as[0].href; }
}
