// JavaScript Document by Seraf
// fixed bug by marko

window.onload = function() {
    var oTBody = document.getElementsByTagName('tbody');
    
    if (oTBody[0] != undefined) {
		var trs = oTBody[0].getElementsByTagName('tr');
		for (var i=0; i<trs.length; i++) {
			trs[i].onmouseover=function() {
				this.className+=" over";
			}
			trs[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" over\\b"), "");
			}
		}
	}
}
