// Javascript Animation

//  See http://www.eyeball-design.com (freebie section)



<!-- hide 



browserName = navigator.appName; 

browserVer = parseInt(navigator.appVersion); 

browser = "NotOk"; 



// Detect if Netscape or MSIE version is ok 



if (browserName == "Netscape" && browserVer >= 3) { browser = "ok"} 

if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) { browser = "ok"} 



// Initialize your images

if (browser == "ok") {
	//Page Header Menu...
	Link1 = new Image(); Link1.src = "images/ordering.gif"; 
	Link1on = new Image(); Link1on.src = "images/ordering-glow.gif"; 
	Link2 = new Image(); Link2.src = "images/products.gif"; 
	Link2on = new Image(); Link2on.src = "images/products-glow.gif"; 
	Link3 = new Image(); Link3.src = "images/contact.gif"; 
	Link3on = new Image(); Link3on.src = "images/contact-glow.gif"; 
	LinkLks = new Image(); LinkLks.src = "images/links.gif";
	LinkLkson = new Image(); LinkLkson.src = "images/links-glow.gif";
	LinkRvw = new Image(); LinkRvw.src = "images/reviews.gif";
	LinkRvwOn = new Image(); LinkRvwOn.src = "images/reviews-glow.gif";

	//Products Page Icons...

	//TTS...
	Link4= new Image(); Link4.src = "images/BlackTTS-off.gif"; 
	Link4on = new Image(); Link4on.src = "images/BlackTTS-on.gif"; 

	//Wah (mods)...
	Link6= new Image(); Link6.src = "images/voxwahIcon.gif"; 
	Link6on = new Image(); Link6on.src = "images/voxwahIcon-glow.gif"; 

	//Switch (parts)...
	Link7= new Image(); Link7.src = "images/PartsIcon.gif"; 
	Link7on = new Image(); Link7on.src = "images/PartsIcon-glow.gif";
}



function swap(imgName,select) { 

	if (browser == "ok") {

		imgOn = eval(select + ".src"); 

		document.images[imgName].src = imgOn; 

	}

} 



// quit hiding -->