function changeCell(obj){
  document.getElementById(obj).style.background = "#5680a8";
  document.getElementById(obj).style.cursor = "pointer";
  document.getElementById(obj).style.color = "#FFFFFF";
}

function originalCell(obj){
  document.getElementById(obj).style.background = "url(/_assets/images/topNav_bg.gif)";
  document.getElementById(obj).style.color = "#E6E6E6"; 
}

function goTo(url){
	location.href=url;
}

function buttonBlueOver(obj){
	document.getElementById(obj).style.background = "#5680a8";
  document.getElementById(obj).style.cursor = "pointer";
}

function buttonBlueOff(obj){
	document.getElementById(obj).style.background = "url(/_assets/images/button_blue_bg.gif)";
}