	
	function getrowid(object){
		var id=object.id;
		return id.substring(4, id.length);
	}
	
	function rowover(object){
		var id=getrowid(object);
		document.getElementById("rows"+id).className="fixturerowover";
	}
	
	function rowout(object){
	
		var id=getrowid(object);
		var rowcolor;
		
		if(id%2==0){
			rowcolor="fixturerow1";
		}else{
			rowcolor="fixturerow2";
		}
		
		document.getElementById("rows"+id).className=rowcolor;
	}