//Begin mouseover and out
function btnOn(img){
  img.src=img.src.replace("Off.", "On.");
}
function btnOff(img){
  img.src=img.src.replace("On.", "Off.");
}
//End mouseover and out