//<!--
if (document.images) {

homeoff=new Image();
homeoff.src= "images/menuitems/homeoff.gif";
homeon=new Image();
homeon.src= "images/menuitems/homeon.gif";
groupsoff=new Image();
groupsoff.src= "images/menuitems/groupsoff.gif";
groupson=new Image();
groupson.src= "images/menuitems/groupson.gif";
workshopsoff=new Image();
workshopsoff.src= "images/menuitems/workshopsoff.gif";
workshopson=new Image();
workshopson.src= "images/menuitems/workshopson.gif";
therapyoff=new Image();
therapyoff.src= "images/menuitems/therapyoff.gif";
therapyon=new Image();
therapyon.src= "images/menuitems/therapyon.gif";
aboutoff=new Image();
aboutoff.src= "images/menuitems/aboutoff.gif";
abouton=new Image();
abouton.src= "images/menuitems/abouton.gif";
contactoff=new Image();
contactoff.src= "images/menuitems/contactoff.gif";
contacton=new Image();
contacton.src= "images/menuitems/contacton.gif";
}

function imageOn (imagename){
  document[imagename].src=eval(imagename+"on.src");
 }
function imageOff (imagename){
  document[imagename].src=eval(imagename+"off.src");
 }

//-->