if (document.images)  {

clientloginON = new Image(100,19	);
// when site goes live: clientloginON.src = "/img/menu/clientlogin_ON.gif";
clientloginON.src = "http://216.182.80.230/goahead/img/menu/clientlogin_ON.gif";
clientloginOFF = new Image(100,19);
// when site goes live: clientloginOFF.src = "/img/menu/clientlogin.gif";
clientloginOFF.src = "http://216.182.80.230/goahead/img/menu/clientlogin.gif";

goaheadlogoON = new Image(127,101);
// when site goes live: goaheadlogoON.src = "/img/goaheadlogoON.jpg";
goaheadlogoON.src = "http://216.182.80.230/goahead/img/goaheadlogoON.jpg";
goaheadlogoOFF = new Image(127,101);
// when site goes live: goaheadlogoOFF.src = "/img/goaheadlogo.jpg";
goaheadlogoOFF.src = "http://216.182.80.230/goahead/img/goaheadlogo.jpg";

}


function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}

function b() {
  if (document.images) {
    for (var i=0; i<b.arguments.length; i+=2) {
      document[b.arguments[i]].src = eval(b.arguments[i+1] + ".src");
    }
  }
}