<!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), " ");
			
		}
	}
}
if (window.attachEvent) {
   window.attachEvent("onload", sfHover);
}

var ImgPath='imgswitcher/'; 
var ImgAry=new Array('01_lg.gif','02_lg.gif','03_lg.gif','04_lg.gif','01_sm.gif','02_sm.gif','03_sm.gif','04_sm.gif'); 
var SRCAry=new Array(); 

for (i=0;i<ImgAry.length;i++){ 
SRCAry[i]=new Image(); 
SRCAry[i].load=false; 
SRCAry[i].onload=function(){ this.load=true; } 
SRCAry[i].src=ImgPath+ImgAry[i]; 
} 

function MseOver(obj,img,mimg){ 
for (i=0;i<ImgAry.length;i++){ 
  if (ImgAry[i].match(img)){ 
   if (SRCAry[i].load){ 
    obj.out=obj.src; 
    obj.onmouseout=function(){ this.src=this.out; } 
    obj.src=SRCAry[i].src; 
   } 
  } 
} 
if (mimg){ 
  document.getElementById('imgMain').src=ImgPath+mimg; 
} 
else { 
  document.getElementById('imgMain').src=obj.out; 
} 
}

/* 
	Function launchWS spawns a pop-up window
	p = page URL
	n = page name
	w = width
	h = height
	s = scroll (yes,no,auto)
*/
function launchWin(p,n) {
	w = "500";
	h = "500";
	doLaunch = window.open(p,n,"scrollbars=yes,resizable=no,width="+w+",height="+h+",status=no,location=no,toolbar=no,menubar=no");
	doLaunch.focus;
}

function launchDisplay(p,n,w,h,s) {
	if (s == "yes") {
		s = "yes";
		r = "yes"
	} else {	
		s = "no";
		r = "no"; 
	}
	doLaunch = window.open(p,n,"scrollbars,resizable="+r+",width="+w+",height="+h+",status=no,location=no,toolbar=no,menubar=no");
	doLaunch.focus;
}



//="+s+"
//-->
