function changeSideNav(src,newColor,newBG,imgNum) {
	src.bgColor = newBG;
	src.children.tags('TD')[2].backgroundcolor = newBG;
	src.children.tags('TD')[1].backgroundcolor= newBG;
	src.style.cursor = 'hand';
	src.children.tags('TD')[2].children.tags('A')[0].style.color = newColor;
	if(src.children.tags('TD')[1].children.tags('IMG')[0]) {
		src.children.tags('TD')[1].children.tags('IMG')[0].src = '/images/yellow_dot' + imgNum + '.gif';
	}
}

function rowLink(src) {
	src.children.tags('TD')[2].children.tags('A')[0].click();
}