<!--
if (document.images) {
//Menu images  
  button1 = new Image();
  button1.src = "button1a.jpg";
  button12 = new Image();
  button12.src = "button1.jpg";
	button2 = new Image();
  button2.src = "button2a.jpg";
  button22 = new Image();
  button22.src = "button2.jpg";
  button3 = new Image();
  button3.src = "button3a.jpg";
  button32 = new Image();
  button32.src = "button3.jpg";
	lbutton1 = new Image();
  lbutton1.src = "lbutton1.jpg";
  lbutton12 = new Image();
  lbutton12.src = "lbutton1a.jpg";
  lbutton2 = new Image();
  lbutton2.src = "lbutton2.jpg";
  lbutton22 = new Image();
  lbutton22.src = "lbutton2a.jpg";
	lbutton3 = new Image();
  lbutton3.src = "lbutton3.jpg";
  lbutton32 = new Image();
  lbutton32.src = "lbutton3a.jpg";
	lbutton4 = new Image();
  lbutton4.src = "lbutton4.jpg";
  lbutton42 = new Image();
  lbutton42.src = "lbutton4a.jpg";
	lbutton5 = new Image();
  lbutton5.src = "lbutton5.jpg";
  lbutton52 = new Image();
  lbutton52.src = "lbutton5a.jpg";
	lbutton6 = new Image();
  lbutton6.src = "lbutton6.jpg";
  lbutton62 = new Image();
  lbutton62.src = "lbutton6a.jpg";
	lbutton7 = new Image();
  lbutton7.src = "lbutton7.jpg";
  lbutton72 = new Image();
  lbutton72.src = "lbutton7a.jpg";


}
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;
	}
  }
}
