//Javascript
//Style for lastComments in sidebar
function initCmtList() {
	  if (document.getElementById) {
			var  listRoot = document.getElementById("lastComments");
	if (listRoot !=null)	{
			  for (i=0; i<listRoot.childNodes.length; i++) {
					  node = listRoot.childNodes[i];
			  if (node.nodeName=="BR"){
					  node = listRoot.childNodes[i-3];
							  node.className+="commenter";
					  }
			  }
	  }
	}
}

//function load ALL scripts
function loadus() {
	initCmtList();
}


//RUN
if (window.addEventListener)
window.addEventListener("load", loadus, false);
else if (window.attachEvent)
window.attachEvent("onload", loadus);
else
window.onload=loadus


