// JavaScript Document

<!--
if (document.images) {
    homebuttonup       = new Image();
    homebuttonup.src   = "images/menu/homeUp.png" ;
    homebuttondown     = new Image() ;
    homebuttondown.src = "images/menu/homeDown.png" ;
	
	itServicesbuttonup       = new Image();
    itServicesbuttonup.src   = "images/menu/itServicesUp.png" ;
    itServicesbuttondown     = new Image() ;
    itServicesbuttondown.src = "images/menu/itServicesDown.png" ;
	
	managedServicesbuttonup       = new Image();
    managedServicesbuttonup.src   = "images/menu/managedServicesUp.png" ;
    managedServicesbuttondown     = new Image() ;
    managedServicesbuttondown.src = "images/menu/managedServicesDown.png" ;
	
	healthCareItbuttonup       = new Image();
    healthCareItbuttonup.src   = "images/menu/healthCareItUp.png" ;
    healthCareItbuttondown     = new Image() ;
    healthCareItbuttondown.src = "images/menu/healthCareItDown.png" ;
	
	unifiedCommunicationsbuttonup       = new Image();
    unifiedCommunicationsbuttonup.src   = "images/menu/unifiedCommunicationsUp.png" ;
    unifiedCommunicationsbuttondown     = new Image() ;
    unifiedCommunicationsbuttondown.src = "images/menu/unifiedCommunicationsDown.png" ;
	
	whoWeArebuttonup       = new Image();
    whoWeArebuttonup.src   = "images/menu/whoWeAreUp.png" ;
    whoWeArebuttondown     = new Image() ;
    whoWeArebuttondown.src = "images/menu/whoWeAreDown.png" ;
	
	onlineSupportbuttonup       = new Image();
    onlineSupportbuttonup.src   = "images/menu/onlineSupportUp.png" ;
    onlineSupportbuttondown     = new Image() ;
    onlineSupportbuttondown.src = "images/menu/onlineSupportDown.png" ;
	
	contactUsbuttonup       = new Image();
    contactUsbuttonup.src   = "images/menu/contactUsUp.png" ;
    contactUsbuttondown     = new Image() ;
    contactUsbuttondown.src = "images/menu/contactUsDown.png" ;
}
function buttondown( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "down.src" );
    }
}
function buttonup ( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "up.src" );
    }
}
// -->
