

var mygallery=new fadeSlideShow({
	wrapperid: "filmstrip-medusa", //ID of blank DIV on page to house Slideshow
	dimensions: [153, 215], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/medusa1.jpg"],
		["images/medusa2.jpg"],
		["images/medusa3.jpg"],
		["images/medusa4.jpg"],
		["images/medusa5.jpg"],
		["images/medusa6.jpg"],
		["images/medusa7.jpg"],
		["images/medusa8.jpg"],
		["images/medusa9.jpg"],
		["images/medusa10.jpg"]
		],
	displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})

        var strBrowser;
        var strVersion;

        
        function ImgFadeOut(strImage){
            strBrowser = BrowserDetect.browser;        
            strVersion= BrowserDetect.version;

            if(strBrowser=='Explorer' && strVersion == '6'){
            }else if(strBrowser=='Explorer' && strVersion == '5'){
            }else if(strBrowser=='Explorer' && strVersion == '5.5'){
            }else{
                t2A = new OpacityTween(document.getElementById(strImage),Tween.regularEaseInOut, 100, 50, .3);
                t2A.start();               
            }
        }

        function ImgFadeIn(strImage){
            strBrowser = BrowserDetect.browser;        
            strVersion= BrowserDetect.version;
            
            
            if(strBrowser=='Explorer' && strVersion == '6'){
                
            }else if(strBrowser=='Explorer' && strVersion == '5'){
                
            }else if(strBrowser=='Explorer' && strVersion == '5.5'){
                
            }else{
                t2A = new OpacityTween(document.getElementById(strImage),Tween.regularEaseInOut, 50, 100, .3);
                t2A.start();               
            }
        }

