<!-- // START : SOUND MODULE -->
<!-- // Requires following at top  <bgsound id="soundfiles">  -->

var is_SiteSoundFile = new Array();

is_SiteSoundFile[0] = "Rollover.wav";

IE = (navigator.appVersion.indexOf("MSIE")!=-1 && document.all)?1:0;
NS = (navigator.appName=="Netscape" && navigator.plugins["LiveAudio"])? 1:0;

ver4 = IE||NS? 1:0;

function of_preloadSounds(){

	if (!ver4) return; 
	if (NS) auEmb = new Layer(0,window);
	else {
		ls_Embed = "<DIV ID='auEmb' STYLE='position:absolute;'></DIV>"; 
		document.body.insertAdjacentHTML("BeforeEnd",ls_Embed);
	}
	var ls_Embed = '';
	for (i=0;i<is_SiteSoundFile.length;i++) ls_Embed += "<EMBED SRC='"+is_SiteSoundFile[i]+"' VOLUME='30' AUTOSTART='FALSE' HIDDEN='TRUE'>"
	if (IE) auEmb.innerHTML = ls_Embed;
	else{
		auEmb.document.open();
		auEmb.document.write(ls_Embed);
		auEmb.document.close();
	} 

	auCon = IE? document.all.soundfiles:auEmb; auCon.control = of_auCtrl;
}

function of_auCtrl(whSound,play) {
	if (IE) this.src = play? is_SiteSoundFile[whSound]:'';
	else eval("this.document.embeds[whSound]." + (play? "play()":"stop()"))
}

function of_PlaySound(whSound) {
	if (window.auCon && ib_SoundOn ) auCon.control(whSound,true);
} 

function of_StopSound(whSound) {
	if (window.auCon && ib_SoundOn  ) auCon.control(whSound,false);
}

<!-- // END : SOUND MODULE -->

