//Logica3 Website Rollover JavaScript

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3) version = "n3";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
else version = "n2";

if (version == "n3") {

	tnav_homeon = new Image(52,18);
	tnav_homeon.src = "/images/tnav_home_ro.gif";
	tnav_abouton = new Image(74,18);
	tnav_abouton.src = "/images/tnav_about_ro.gif";
	tnav_customon = new Image(74,18);
	tnav_customon.src = "/images/tnav_custom_ro.gif";
	tnav_contacton = new Image(74,18);
	tnav_contacton.src = "/images/tnav_contact_ro.gif";
	
	tnav_create_accounton = new Image(74,18);
	tnav_create_accounton.src = "/images/tnav_create_account_ro.gif";
	tnav_log_inon = new Image(74,18);
	tnav_log_inon.src = "/images/tnav_log_in_ro.gif";
	tnav_addressbookon = new Image(74,18);
	tnav_addressbookon.src = "/images/tnav_address_book_ro.gif";
	tnav_profileon = new Image(74,18);
	tnav_profileon.src = "/images/tnav_profile_ro.gif";
	tnav_log_outon = new Image(74,18);
	tnav_log_outon.src = "/images/tnav_log_out_ro.gif";
	
	tnav_featureson = new Image(74,18);
	tnav_featureson.src = "/images/tnav_features_ro.gif";
	tnav_pricingon = new Image(74,18);
	tnav_pricingon.src = "/images/tnav_pricing_ro.gif";
	
	
	h_selecton = new Image(60,25);
	h_selecton.src = "/images/h_select_ro.gif";
	h_personalizeon = new Image(60,25);
	h_personalizeon.src = "/images/h_personalize_ro.gif";
	h_confirmon = new Image(83,25);
	h_confirmon.src = "/images/h_confirm_ro.gif";
	
	
	
	tnav_homeoff = new Image(52,18);
	tnav_homeoff.src = "/images/tnav_home.gif";
	tnav_aboutoff = new Image(74,18);
	tnav_aboutoff.src = "/images/tnav_about.gif";
	tnav_customoff = new Image(74,18);
	tnav_customoff.src = "/images/tnav_custom.gif";
	tnav_contactoff = new Image(74,18);
	tnav_contactoff.src = "/images/tnav_contact.gif";
	
	tnav_create_accountoff = new Image(74,18);
	tnav_create_accountoff.src = "/images/tnav_create_account.gif";
	tnav_log_inoff = new Image(74,18);
	tnav_log_inoff.src = "/images/tnav_log_in.gif";
	tnav_addressbookoff = new Image(74,18);
	tnav_addressbookoff.src = "/images/tnav_address_book.gif";
	tnav_profileoff = new Image(74,18);
	tnav_profileoff.src = "/images/tnav_profile.gif";
	tnav_log_outoff = new Image(74,18);
	tnav_log_outoff.src = "/images/tnav_log_out.gif";
	
	tnav_featuresoff = new Image(74,18);
	tnav_featuresoff.src = "/images/tnav_features.gif";
	tnav_pricingoff = new Image(74,18);
	tnav_pricingoff.src = "/images/tnav_pricing.gif";
	
	h_selectoff = new Image(60,25);
	h_selectoff.src = "/images/h_select.gif";
	h_personalizeoff = new Image(60,25);
	h_personalizeoff.src = "/images/h_personalize.gif";
	h_confirmoff = new Image(83,25);
	h_confirmoff.src = "/images/h_confirm.gif";
}

function img_act(imgName){
	if (version == "n3"){
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
	}
}

function img_inact(imgName){
	if (version == "n3"){
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
	}
}




