//This is the script for the Drop Downs

	// CSS Top Menu- By JavaScriptKit.com (http://www.javascriptkit.com)
	// Adopted from SuckerFish menu
	// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
	// Please keep this credit intact
	
	startMenu = function() {
	if (document.all&&document.getElementById) {
	cssmenu = document.getElementById("csstopmenu");
	for (i=0; i<cssmenu.childNodes.length; i++) {
	node = cssmenu.childNodes[i];
	if (node.nodeName=="LI") {
	node.onmouseover=function() {
	this.className+=" over";
	}
	node.onmouseout=function(){                  
	this.className=this.className.replace(" over", "")
	}
	}
	}
	}
	}
	
	if (window.attachEvent)
	window.attachEvent("onload", startMenu)
	else
	window.onload=startMenu;


// This is the script for the rollover preload and switch
	
	/*** start code to preload menu rollover ***/
	
	aboutusROa=new Image()
	aboutusROa.src="images/aboutus.gif"
	aboutusROb=new Image()
	aboutusROb.src="images/aboutus.gif"
	
	audioROa=new Image()
	audioROa.src="images/audio.gif"
	audioROb=new Image()
	audioROb.src="images/audio.gif"
	
	galleryROa=new Image()
	galleryROa.src="images/gallery.gif"
	galleryROb=new Image()
	galleryROb.src="images/gallery.gif"
	
	linksROa=new Image()
	linksROa.src="images/links.gif"
	linksROb=new Image()
	linksROb.src="images/links.gif"
	
	storeROa=new Image()
	storeROa.src="images/store.gif"
	storeROb=new Image()
	storeROb.src="images/store.gif"
	
	/****** begin function to rollover ******/
	function roll(imagename,objectsrc){
	if (document.images)
	document.images[imagename].src=eval(objectsrc+".src")
	}
	/****** end function to rollover ******/

