// JavaScript Document
<!-- Code credit ascribed to Agenttwitch
function stripeTableRows(tableObject,startRow) {
var TABLE_ROW_COLOR_DEFAULT = "#f2f4f5";
var TABLE_ROW_COLOR_HILIGHT = "#e9f2f9";


	 var currentRowColor = "";
	 for (var i = startRow; i < tableObject.rows.length; i++) {

		currentRowColor = TABLE_ROW_COLOR_DEFAULT;

		if (i % 2 == 0) {
			currentRowColor = TABLE_ROW_COLOR_HILIGHT;
			}
	   
	   tableObject.rows[i].style.backgroundColor = currentRowColor;

	   }

}

function configurePage() {
	 stripeTableRows(document.getElementById("dirTab"),0);
	 	 stripeTableRows(document.getElementById("dirTab2"),0);
}
//-->
