function setupRollovers(){
	var objNavRow1 = document.getElementById('navRow1');
	var objNavRow2 = document.getElementById('navRow2');
	var arrRow1Tds = objNavRow1.getElementsByTagName('td');
	var arrRow2Tds = objNavRow2.getElementsByTagName('td');
	var strColorOut = '#666';
	var strColorOver = '#ff9300';
	if(document.getElementById('homeLink')){
		var objHomeLinkRow1 = document.getElementById('homeLinkRow1');
		var objHomeLinkRow2 = document.getElementById('homeLinkRow2');
		var arrHomeLinkRow1Tds = objHomeLinkRow1.getElementsByTagName('td');
		var arrHomeLinkRow2Tds = objHomeLinkRow2.getElementsByTagName('td');
	}
	
	if (arrRow1Tds[0].className.indexOf('on') == -1) {
		arrRow1Tds[0].onmouseover = function(){arrRow2Tds[0].style.backgroundColor=strColorOver;}
		arrRow1Tds[0].onmouseout = function(){arrRow2Tds[0].style.backgroundColor=strColorOut;}	
	}
	else arrRow2Tds[0].style.backgroundColor=strColorOver;
	
	if (arrRow1Tds[1].className.indexOf('on') == -1) {
		arrRow1Tds[1].onmouseover = function(){arrRow2Tds[1].style.backgroundColor=strColorOver;}
		arrRow1Tds[1].onmouseout = function(){arrRow2Tds[1].style.backgroundColor=strColorOut;}
	}
	else arrRow2Tds[1].style.backgroundColor=strColorOver;
	
	if (arrRow1Tds[2].className.indexOf('on') == -1) {
		arrRow1Tds[2].onmouseover = function(){arrRow2Tds[2].style.backgroundColor=strColorOver;}
		arrRow1Tds[2].onmouseout = function(){arrRow2Tds[2].style.backgroundColor=strColorOut;}	
	}
	else arrRow2Tds[2].style.backgroundColor=strColorOver;
	
	if (arrRow1Tds[3].className.indexOf('on') == -1) {
		arrRow1Tds[3].onmouseover = function(){arrRow2Tds[3].style.backgroundColor=strColorOver;}
		arrRow1Tds[3].onmouseout = function(){arrRow2Tds[3].style.backgroundColor=strColorOut;}
	}
	else arrRow2Tds[3].style.backgroundColor=strColorOver;
	
	if (arrRow1Tds[4].className.indexOf('on') == -1) {
		arrRow1Tds[4].onmouseover = function(){arrRow2Tds[4].style.backgroundColor=strColorOver;}
		arrRow1Tds[4].onmouseout = function(){arrRow2Tds[4].style.backgroundColor=strColorOut;}
	}
	else arrRow2Tds[4].style.backgroundColor=strColorOver;
	
	if(document.getElementById('homeLink')){
	arrHomeLinkRow1Tds[0].onmouseover = function(){arrHomeLinkRow2Tds[0].style.backgroundColor=strColorOver;}
	arrHomeLinkRow1Tds[0].onmouseout = function(){arrHomeLinkRow2Tds[0].style.backgroundColor=strColorOut;}
	}
	
}
window.onload = setupRollovers;