<!--

var ImgPath='/fd/visitorcenter/currentevents/gallery_imgswitcher/'; 
var ImgAry=new Array('0001_lg.jpg','3029_lg.jpg','3044_lg.jpg','2805_lg.jpg','2716_lg.jpg','2732_lg.jpg','2832_lg.jpg','2880_lg.jpg','2967_lg.jpg','2900_lg.jpg','2920_lg.jpg','2950_lg.jpg','3010_lg.jpg','2993_lg.jpg','0001_sm.jpg','3029_sm.jpg','3044_sm.jpg','2805_sm.jpg','2716_sm.jpg','2732_sm.jpg','2832_sm.jpg','2880_sm.jpg','2967_sm.jpg','2900_sm.jpg','2920_sm.jpg','2950_sm.jpg','3010_sm.jpg','2993_sm.jpg'); 
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('galimgMain').src=ImgPath+mimg; 
} 
else { 
  document.getElementById('galimgMain').src=obj.out; 
} 
}
//="+s+"
//-->

