<!--
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
if (document.images) {
//Leftbar images  
  img01 = new Image();
  img01.src = "images/menu/benefits_off.gif";
  img012 = new Image();
  img012.src = "images/menu/benefits_on.gif";
  img02 = new Image();
  img02.src = "images/menu/philosophy_off.gif";
  img022 = new Image();
  img022.src = "images/menu/philosophy_on.gif";
  img03 = new Image();
  img03.src = "images/menu/about_off.gif";
  img032 = new Image();
  img032.src = "images/menu/about_on.gif";
  img04 = new Image();
  img04.src = "images/menu/location_off.gif";
  img042 = new Image();
  img042.src = "images/menu/location_on.gif";
  img05 = new Image();
  img05.src = "images/menu/contact_off.gif";
  img052 = new Image();
  img052.src = "images/menu/contact_on.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;
	}
  }
}
//-->