// beginning of Javascript script

if (parseInt(navigator.appVersion.substring(0,1))>=3) { // 3.0 or greater.

hdown_on = new Image();
hdown_off = new Image();
hdown_off.src = 'images/home_down_off.gif';
hdown_on.src = 'images/home_down_on.gif';

hclient_on = new Image();
hclient_off = new Image();
hclient_off.src = 'images/home_client_off.gif';
hclient_on.src = 'images/home_client_on.gif';

ihome_on = new Image();
ihome_off = new Image();
ihome_off.src = '../images/ihome_off.jpg';
ihome_on.src = '../images/ihome_on.jpg';

idown_on = new Image();
idown_off = new Image();
idown_off.src = '../images/idown_off.jpg';
idown_on.src = '../images/idown_on.jpg';

iclient_on = new Image();
iclient_off = new Image();
iclient_off.src = '../images/iclient_off.jpg';
iclient_on.src = '../images/iclient_on.jpg';

}

function on(image) {
  if (parseInt(navigator.appVersion.substring(0,1))>=3) { // 3.0 or greater.
      imagesrc = eval(image + '_on.src');
      document[image].src = imagesrc;
  }
}

function off(image) {
  if (parseInt(navigator.appVersion.substring(0,1))>=3) { // 3.0 or greater.
      imagesrc = eval(image + "_off.src");
      document[image].src = imagesrc;
 }
}

// end of script -->