$(document).ready(function(){
	addTigerStripesToLists();
});

function addTigerStripesToLists(){
	
	if($("table.tigerStripe").length > 0){
		for(i = 0; i<$("table.tigerStripe tr").length; i++){
			if((i+1) % 2 == 0){
				$($("table.tigerStripe tr")[i]).css("background-color", "#e4e4e4");
			}
		}
	}
	
}

