<!--

function preload() {

/*
preload()
Loads images into the browser's cache for later use.

Source: Webmonkey Code Library
(http://www.hotwired.com/webmonkey/javascript/code_library/)
Author: Nadav Savio
Usage: preload('image 1 URL', 'image 2 URL', 'image 3 URL', ...);
*/

  // Don't bother if there's no document.images
  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = preload.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.WM.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.WM.loadedImages[arg].src = preload.arguments[arg];
    }
  }
}


// -->

<!--

function Swap(daImage, daSrc){
  var objStr,obj;
  /*
    Swap()
    Changes the source of an image.

    Source: Webmonkey Code Library
    (http://www.hotwired.com/webmonkey/javascript/code_library/)

    Author: Shvatz
    Author Email: shvatz@wired.com

    Usage: Swap(originalImage, 'newSourceUrl');

    Requires: preload() (optional, but recommended)
    Thanks to Ken Sundermeyer (ksundermeyer@macromedia.com) for his help
    with variables in ie3 for the mac. 
    */

  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(daImage) == 'string') {
      // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}
        function main_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top_on.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');        
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function ill_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill_on.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');        
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function lab_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa_on.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');        
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function tran_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access_on.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');        
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function visit_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai_on.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');                	
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function adm_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin_on.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif');        	       	             	
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');  
        }
        function qanda_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
        	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda_on.gif');        
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff.gif');        
        }
        function staff_link(){
        	Swap('top','http://www.noguchi-med.or.jp/tabs/top.gif');
        	Swap('ill','http://www.noguchi-med.or.jp/tabs/ill.gif');
        	Swap('kensa','http://www.noguchi-med.or.jp/tabs/kensa.gif');
        	Swap('tran','http://www.noguchi-med.or.jp/tabs/access.gif');
       		Swap('visit','http://www.noguchi-med.or.jp/tabs/gairai.gif');
        	Swap('adm','http://www.noguchi-med.or.jp/tabs/nyuin.gif');
	       	Swap('QandA','http://www.noguchi-med.or.jp/tabs/qanda.gif'); 
	       	Swap('staff','http://www.noguchi-med.or.jp/tabs/staff_on.gif');        
        }

    //    }
// -->
