if (document.images) {   
         
orderon = new Image();   
orderon.src = "images/btn.order2.gif";
orderoff = new Image();   
orderoff.src = "images/btn.order1.gif"; 

pictureson = new Image();   
pictureson.src = "images/btn.pictures2.gif";
picturesoff = new Image();   
picturesoff.src = "images/btn.pictures1.gif"; 

indepth2on = new Image();   
indepth2on.src = "images/contact/indepth2on.gif";
indepth2off = new Image();   
indepth2off.src = "images/contact/indepth2off.gif"; 

indepth1on = new Image();   
indepth1on.src = "images/contact/indepth1on.gif";
indepth1off = new Image();   
indepth1off.src = "images/contact/indepth1off.gif"; 


sendon = new Image();   
sendon.src = "images/info/sendon.gif";
sendoff = new Image();   
sendoff.src = "images/info/sendoff.gif"; 


}

function switchOn(imageName) {
	if (document.images) {
		document[imageName].src=eval(imageName + "on.src");
  }
}
function switchOff(imageName) {
	if (document.images) {
		document[imageName].src=eval(imageName + "off.src");
  }}