﻿if (navigator.userAgent.indexOf("MSIE")!=-1){
	window.onload = setAlternativeColor;	
}
else{
	if (document.addEventListener){
		document.addEventListener("DOMContentLoaded", setAlternativeColor, false);
	} 
}


//This function change the color for results grid.
function setAlternativeColor(){
	var trList = document.getElementsByTagName('tr');

	if(trList){
		var j = 1;
		for(i=0;i<trList.length;i++){
			if(trList[i].className == 'results-row'){
				if(j%2 == 0){
					trList[i].style.backgroundColor="#ffc";
				}
				j++;
			}
		}
	}
}
