// JavaScript Document

function color_bg(obj){
	obj.style.backgroundColor="#E6E6E6";
}
function clear_bg(obj){
	obj.style.backgroundColor="#FFFFFF";
}
function highlight_TD(obj){
	var allTableRows = document.getElementById("serviceTable1").rows;
			for (k=0;k<allTableRows.length;k++){
					for(u=0;u<allTableRows[k].cells.length;u++){
						allTableRows[k].cells[u].style.border="1px solid black";
						allTableRows[k].cells[u].style.backgroundImage="url(none)";
						}
				}

	obj.style.border="1px solid black";
	obj.style.backgroundImage="url(images/serviceMenubg.jpg)";

}
function exceptionHighlightTD(objName){
	var allTableRows = document.getElementById("serviceTable1").rows;
		for (k=0;k<allTableRows.length;k++){
			for(u=0;u<allTableRows[k].cells.length;u++){
				allTableRows[k].cells[u].style.border="1px solid black";
				if(allTableRows[k].cells[u].id == objName){
					allTableRows[k].cells[u].style.backgroundImage="url(images/serviceMenubg.jpg)"
				}
				else{
					allTableRows[k].cells[u].style.backgroundImage="url(none)";
				}
			}
		}
}


