// JavaScript Document

imgEmail = new Image();
imgEmail.src = "/img/home/contactus/contactus_row2a.gif";
imgEmail_over = new Image();
imgEmail_over.src = "/img/home/contactus/contactus_row2a_over.gif";

imgLogin = new Image();
imgLogin.src = "/img/home/contactus/contactus_row3.gif";
imgLogin_over = new Image();
imgLogin_over.src = "/img/home/contactus/contactus_row3_over.gif";

imgFAQ = new Image();
imgFAQ.src = "/img/home/contactus/contactus_row4.gif";
imgFAQ_over = new Image();
imgFAQ_over.src = "/img/home/contactus/contactus_row4_over.gif";

imgSiteMap = new Image();
imgSiteMap.src = "/img/home/contactus/contactus_row5.gif";
imgSiteMap_over = new Image();
imgSiteMap_over.src = "/img/home/contactus/contactus_row5_over.gif";

imgSearch = new Image();
imgSearch.src = "/img/global_nav/header/navSearchOff_46.gif";
imgSearch_over = new Image();
imgSearch_over.src = "/img/global_nav/header/navSearchOn_46.gif";

imgHome = new Image();
imgHome.src = "/img/global_nav/header/navHomeOff.gif";
imgHome_over = new Image();
imgHome_over.src = "/img/global_nav/header/navHomeOn.gif";

imgAbout = new Image();
imgAbout.src = "/img/global_nav/header/navAboutUsOff.gif";
imgAbout_over = new Image();
imgAbout_over.src = "/img/global_nav/header/navAboutUsOn.gif";

imgProducts = new Image();
imgProducts.src = "/img/global_nav/header/navServicesOff.gif";
imgProducts_over = new Image();
imgProducts_over.src = "/img/global_nav/header/navServicesOn.gif";

imgNews = new Image();
imgNews.src = "/img/global_nav/header/navMediaOff.gif";
imgNews_over = new Image();
imgNews_over.src = "/img/global_nav/header/navMediaOn.gif";

imgeAccount = new Image();
imgeAccount.src = "/img/global_nav/header/naveAccountOff.gif";
imgeAccount_over = new Image();
imgeAccount_over.src = "/img/global_nav/header/naveAccountOn.gif";

imgNetwork = new Image();
imgNetwork.src = "/img/global_nav/header/navNetworkOff.gif";
imgNetwork_over = new Image();
imgNetwork_over.src = "/img/global_nav/header/navNetworkOn.gif";

imgContactContact = new Image();
imgContactContact.src = "/img/global_nav/contactus/contactbox_contact_icon.gif";
imgContactContact_over = new Image();
imgContactContact_over.src = "/img/global_nav/contactus/contactbox_contact_icon_over.gif";

imgContactPrint = new Image();
imgContactPrint.src = "/img/global_nav/contactus/contactbox_print_icon.gif";
imgContactPrint_over = new Image();
imgContactPrint_over.src = "/img/global_nav/contactus/contactbox_print_icon_over.gif";

imgContactEmail = new Image();
imgContactEmail.src = "/img/global_nav/contactus/contactbox_email_icon.gif";
imgContactEmail_over = new Image();
imgContactEmail_over.src = "/img/global_nav/contactus/contactbox_email_icon_over.gif";

imgContactRate = new Image();
imgContactRate.src = "/img/global_nav/contactus/contactbox_rate_icon.gif";
imgContactRate_over = new Image();
imgContactRate_over.src = "/img/global_nav/contactus/contactbox_rate_icon_over.gif";

function swapImage( id, img )
{
	if (document.layers) {
		// netscape 4 way
		document[id].src = eval(img).src;	
	} else if (document.images) {
		// nice DOM way
		document.getElementById(id).src = eval(img).src;
	}
}