// JavaScript Document
<!--
document.currentimage='';
if (document.images) {
  homeoff	=	new Image; homeoff.src="/_images/home_off.jpg";
  homeon	=	new Image; homeon.src="/_images/home_on.jpg";
  whyusoff	=	new Image; whyusoff.src="/_images/why_off.jpg";
  whyuson	=	new Image; whyuson.src="/_images/why_on.jpg"; 
  weboff	=	new Image; weboff.src="/_images/web_off.jpg";
  webon		=	new Image; webon.src="/_images/web_on.jpg";   
  databaseoff	=	new Image; databaseoff.src="/_images/database_off.jpg";
  databaseon		=	new Image; databaseon.src="/_images/database_on.jpg";   
  softwareoff	=	new Image; softwareoff.src="/_images/software_off.jpg";
  softwareon		=	new Image; softwareon.src="/_images/software_on.jpg";   
  contactoff	=	new Image; contactoff.src="/_images/contact_off.jpg";
  contacton		=	new Image; contacton.src="/_images/contact_on.jpg";     
}

function rollin(imageName) {
	if(document.getElementById){
		imgElem=document.getElementById(imageName);
		imgElem.setAttribute("src",eval(imageName + "on.src"));
	}
}

function rollout(imageName) {
	if(document.getElementById){
		imgElem=document.getElementById(imageName);
		if(document.currentimage!=imageName){
			imgElem.setAttribute("src",eval(imageName + "off.src"));
		}
	}
}

// -->
