//Footlog javascript functions

function gelGreen(buttonWhat)
 {
 buttonWhat.src = "resources/gel_green1.png";
 }

function gelYellow(buttonWhat)
 {
 buttonWhat.src = "resources/gel_yellow1.png";
 }

function td_hover(what)
 {
 if (what.style.backgroundImage!="url(resources/nav_button_select.png)")
  {
  what.style.backgroundImage= "url(resources/nv_button_hover.png)";
	what.style.color = "#0009a1";
  what.style.cursor= 'pointer';
	}
 }
 
function td_out(what)
 {
 if (what.style.backgroundImage!="url(resources/nv_button_select.png)")
  {
  what.style.backgroundImage= "url(resources/nv_button.png)";
	what.style.color = "#000000";
	}
 }

function td_select(who)
 {
 what=document.getElementById(who);
 what.style.backgroundImage = "url(resources/nv_button_select.png)";
 what.style.fontWeight = "bold";
 }

