//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") {

sitemapon = new Image(87, 17);
sitemapon.src = "images/snav_sitemap_on.gif";
contacton = new Image(87, 22);
contacton.src = "images/snav_contact_on.gif";

overviewon = new Image(185, 28);
overviewon.src = "images/snavh_overview_ro.gif";
strategyon = new Image(185, 24);
strategyon.src = "images/snavh_strategy_ro.gif";
principalson = new Image(185, 24);
principalson.src = "images/snavh_principals_ro.gif";
portfolioon = new Image(185, 24);
portfolioon.src = "images/snavh_portfolio_ro.gif";
expertiseon = new Image(185, 24);
expertiseon.src = "images/snavh_expertise_ro.gif";

basicon = new Image(185, 18);
basicon.src = "images/snavh_basic_on.gif";
common = new Image(185, 18);
common.src = "images/snavh_comm_on.gif";
healthon = new Image(185, 18);
healthon.src = "images/snavh_health_on.gif";
realestateon = new Image(185, 18);
realestateon.src = "images/snavh_realestate_on.gif";
energyon = new Image(185, 18);
energyon.src = "images/snavh_energy_on.gif";
financialon = new Image(185, 18);
financialon.src = "images/snavh_financial_on.gif";
marketon = new Image(185, 18);
marketon.src = "images/snavh_market_on.gif";
consumeron = new Image(185, 18);
consumeron.src = "images/snavh_consumer_on.gif";

locationon = new Image(185, 25);
locationon.src = "images/snav_location_on.gif";
lplinkon = new Image(185, 19);
lplinkon.src = "images/snavh_lplink_on.gif";
homeon = new Image(185, 19);
homeon.src = "images/snavh_home_on.gif";
ameron = new Image(84, 20);
ameron.src = "images/snavh_home_amer_amer_on.gif";
euron = new Image(84, 21);
euron.src = "images/snavh_home_amer_eur_on.gif";
archiveon = new Image(74, 21);
archiveon.src = "images/hnav_archive_on.gif";



sitemapoff = new Image(87, 17);
sitemapoff.src = "images/snav_sitemap.gif";
contactoff = new Image(87, 22);
contactoff.src = "images/snav_contact.gif";

overviewoff = new Image(185, 28);
overviewoff.src = "images/snavh_overview.gif";
strategyoff = new Image(185, 24);
strategyoff.src = "images/snavh_strategy.gif";
principalsoff = new Image(185, 24);
principalsoff.src = "images/snavh_principals.gif";
portfoliooff = new Image(185, 24);
portfoliooff.src = "images/snavh_portfolio.gif";
expertiseoff = new Image(185, 24);
expertiseoff.src = "images/snavh_expertise.gif";

basicoff = new Image(185, 18);
basicoff.src = "images/snavh_basic.gif";
commoff = new Image(185, 18);
commoff.src = "images/snavh_comm.gif";
healthoff = new Image(185, 18);
healthoff.src = "images/snavh_health.gif";
realestateoff= new Image(185, 18);
realestateoff.src = "images/snavh_realestate.gif";
energyoff= new Image(185, 18);
energyoff.src = "images/snavh_energy.gif";
financialoff = new Image(185, 18);
financialoff.src = "images/snavh_financial.gif";
marketoff = new Image(185, 18);
marketoff.src = "images/snavh_market.gif";
consumeroff = new Image(185, 18);
consumeroff.src = "images/snavh_consumer.gif";

locationoff = new Image(185, 25);
locationoff.src = "images/snav_location.gif";
lplinkoff = new Image(185, 19);
lplinkoff.src = "images/snav_lplink.gif";
homeoff = new Image(185, 19);
homeoff.src = "images/snav_home.gif";
ameroff = new Image(84, 20);
ameroff.src = "images/snav_home_amer_amer.gif";
euroff = new Image(84, 21);
euroff.src = "images/snav_home_amer_eur.gif";
archiveoff = new Image(74, 21);
archiveoff.src = "images/hnav_archive.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;
	}
}



