// JavaScript Document created 25/08/2008 by Fraser Patullo to change background colour in tables so they stand out.

window.onload = prepPage;

function prepPage(){
	var rowArray = document.getElementById("guide").getElementsByTagName("tr");
	
	for(var i=0; i<rowArray.length; i+=2)
	{
		rowArray[i].className += 'hilight';
	}
}
