﻿//Javascript rollover created by Gregg Moore for Wilmington Design Company.

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);

if ((bName == "Netscape" && bVer >= 3) ||
	(bName == "Microsoft Internet Explorer"  &&bVer >= 4)) br = "n3";
	 else br = "n2";

//Create image objects, preload all active and inactive images.

//Top Navigation
if (br =="n3") {

	img1on = new Image();
	img1on.src = "images/navigation/green/home_on.jpg";
	img1off = new Image();
	img1off.src = "images/navigation/green/home_off.jpg";

	img1aon = new Image();
	img1aon.src = "images/navigation/green/home_on.jpg";
	img1aoff = new Image();
	img1aoff.src = "images/navigation/green/home_on.jpg";
	
	img2on = new Image();
	img2on.src = "images/navigation/green/about_on.jpg";
	img2off = new Image();
	img2off.src = "images/navigation/green/about_off.jpg";
	
	img2aon = new Image();
	img2aon.src = "images/navigation/green/about_on.jpg";
	img2aoff = new Image();
	img2aoff.src = "images/navigation/green/about_on.jpg";

	img3on = new Image();
	img3on.src = "images/navigation/green/services_on.jpg";
	img3off = new Image();
	img3off.src = "images/navigation/green/services_off.jpg";
	
	img3aon = new Image();
	img3aon.src = "images/navigation/green/services_on.jpg";
	img3aoff = new Image();
	img3aoff.src = "images/navigation/green/services_on.jpg";

	img4on = new Image();
	img4on.src = "images/navigation/green/forms_on.jpg";
	img4off = new Image();
	img4off.src = "images/navigation/green/forms_off.jpg";
	
	img4aon = new Image();
	img4aon.src = "images/navigation/green/forms_on.jpg";
	img4aoff = new Image();
	img4aoff.src = "images/navigation/green/forms_on.jpg";	
	
	img5on = new Image();
	img5on.src = "images/navigation/green/girls_night_out_on.jpg";
	img5off = new Image();
	img5off.src = "images/navigation/green/girls_night_out_off.jpg";
	
	img5aon = new Image();
	img5aon.src = "images/navigation/green/girls_night_out_on.jpg";
	img5aoff = new Image();
	img5aoff.src = "images/navigation/green/girls_night_out_on.jpg";	
	
	img6on = new Image();
	img6on.src = "images/navigation/green/photo_gallery_on.jpg";
	img6off = new Image();
	img6off.src = "images/navigation/green/photo_gallery_off.jpg";
	
	img6aon = new Image();
	img6aon.src = "images/navigation/green/photo_gallery_on.jpg";
	img6aoff = new Image();
	img6aoff.src = "images/navigation/green/photo_gallery_on.jpg";	
	
	img7on = new Image();
	img7on.src = "images/navigation/green/contact_us_on.jpg";
	img7off = new Image();
	img7off.src = "images/navigation/green/contact_us_off.jpg";
	
	img7aon = new Image();
	img7aon.src = "images/navigation/green/contact_us_on.jpg";
	img7aoff = new Image();
	img7aoff.src = "images/navigation/green/contact_us_on.jpg";
	
	img8on = new Image();
	img8on.src = "images/circle_legs_on.jpg";
	img8off = new Image();
	img8off.src = "images/circle_legs_off.jpg";
	
	img9on = new Image();
	img9on.src = "images/circle_back_on.jpg";
	img9off = new Image();
	img9off.src = "images/circle_back_off.jpg";
	

  }

function imgAct(imgName) {
	if (br == "n3") {
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgInact(imgName) {
	if (br == "n3") {
		document[imgName].src = eval(imgName + "off.src");
	}
}

