// Image rollover scripts - used for rollover of menus, etc
// Mouse On Image Function

mnu_about_1= new Image;
mnu_about_0= new Image;
mnu_about_1.src = rootMachine + '/common/images/mnu_about_on.gif';
mnu_about_0.src = rootMachine + '/common/images/mnu_about_off.gif';

mnu_services_1= new Image;
mnu_services_0= new Image;
mnu_services_1.src = rootMachine + '/common/images/mnu_services_on.gif';
mnu_services_0.src = rootMachine + '/common/images/mnu_services_off.gif';

mnu_clients_1= new Image;
mnu_clients_0= new Image;
mnu_clients_1.src = rootMachine + '/common/images/mnu_clients_on.gif';
mnu_clients_0.src = rootMachine + '/common/images/mnu_clients_off.gif';

mnu_support_1= new Image;
mnu_support_0= new Image;
mnu_support_1.src = rootMachine + '/common/images/mnu_support_on.gif';
mnu_support_0.src = rootMachine + '/common/images/mnu_support_off.gif';

mnu_contact_1= new Image;
mnu_contact_0= new Image;
mnu_contact_1.src = rootMachine + '/common/images/mnu_contact_on.gif';
mnu_contact_0.src = rootMachine + '/common/images/mnu_contact_off.gif';

mnu_help_1= new Image;
mnu_help_0= new Image;
mnu_help_1.src = rootMachine + '/common/images/mnu_help_on.gif';
mnu_help_0.src = rootMachine + '/common/images/mnu_help_off.gif';


function img_act(imgName)
   {
	if (document.images)
	   {
	      imgOn = eval(imgName + "1.src");
             document [imgName].src = imgOn;
         }
   }

// Mouse Off Image Function
function img_inact(imgName)
   {
	if (document.images)
	   {
	      imgOn = eval(imgName + "0.src");
             document [imgName].src = imgOn;
         }
   }
