
if (document.images) {
home1 = new Image();home1.src = 'images/home-tama.jpg';
home1a = new Image();home1a.src = 'images/home-tama-over.jpg';
home2 = new Image();home2.src = 'images/home-buy.jpg';
home2a = new Image();home2a.src = 'images/home-buy-over.jpg';
home3 = new Image();home3.src = 'images/home-wheres-the-watch.jpg';
home3a = new Image();home3a.src = 'images/home-wheres-the-watch-over.jpg';
home4 = new Image();home4.src = 'images/home-tama-trivia.jpg';
home4a = new Image();home4a.src = 'images/home-tama-trivia-over.jpg';
home5 = new Image();home5.src = 'images/home-contact.jpg';
home5a = new Image();home5a.src = 'images/home-contact-over.jpg';

}
function di(id,name){
  if (document.images) {document.images[id].src=eval(name+".src"); }
}

// function that displays status bar message

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}



