//for quicklinks
function jumpto(x){
	if (x != "null") {
		document.location.href = x
	}//close if
}//close jumpto


function mod(divisee,base) {
	// Created 1997 by Brian Risk.  http://members.aol.com/brianrisk
	return Math.round(divisee - (Math.floor(divisee/base)*base));
}


function stripeTable() {
	var tables = document.getElementsByTagName("table");
	for(var i=0; i < tables.length; i++) {
		var table = tables[i];
		if(table.className == "showing") {
			var rows = table.getElementsByTagName("tr");
			var rowNum = 1;
			for(var j = 0; j < rows.length; j++) {
				var row = rows[j];
				if((row.className != "headerRow") && (row.className != "headerRow2")){

					if(mod(rowNum,2) == 1){
						row.className = "oddRow";
					} else {
						row.className = "evenRow";
					}
					
					rowNum++;
				}//close if children are td 
			}//close for rows
					 
		}//close if showingTable
		
	}//close for tables
}//close stripeTable


window.onload = function(){
	stripeTable();
}
