
// The first image displayed on screen
function HIGH()
{
    document.images[this.name].src=this.Image_1.src;
    window.status   = this.text;
};

// The second image appeared when the mouse is scrolled over the first image
function LOW()
{
	document.images[this.name].src=this.Image_0.src;
	window.status   ='';
};


function MENUITEM(name,low,high,text)
{
	this.name       = name                  ;
    this.text       = text                  ;
	
	this.Image_0    = new Image(147, 30)     ;    
	this.Image_0.src= low                   ;
	//this.Image_0.width = 600;	
    
	this.Image_1    = new Image(147, 30)     ;    
	this.Image_1.src= high     
	
    this.LOW        = LOW                   ;
    this.HIGH       = HIGH                  ;
};
  
