<!--
if (document.images) {
//Menu images  
  home1 = new Image();
  home1.src = "home1.jpg";
  home12 = new Image();
  home12.src = "home2.jpg";
	button1 = new Image();
  button1.src = "button1.gif";
  button12 = new Image();
  button12.src = "button1a.gif";
	  button2 = new Image();
  button2.src = "button2.gif";
  button22 = new Image();
  button22.src = "button2a.gif";
	  button3 = new Image();
  button3.src = "button3.gif";
  button32 = new Image();
  button32.src = "button3a.gif";
	  button4 = new Image();
  button4.src = "button4.gif";
  button42 = new Image();
  button42.src = "button4a.gif";
	  button5 = new Image();
  button5.src = "button5.gif";
  button52 = new Image();
  button52.src = "button5a.gif";
	  button6 = new Image();
  button6.src = "button6.gif";
  button62 = new Image();
  button62.src = "button6a.gif";
	  search1 = new Image();
  search1.src = "magbutton1.jpg";
  search12 = new Image();
  search12.src = "magbutton1a.gif";
  
 


}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
 
