var slideShowSpeed = 3000;
var crossFadeDuration = 3;
var swid = screen.width;
var whereX = (swid/2)-330;
var whereY = -175;
var Pic = new Array();

Pic[0] = 'gallery/_th/th_DSCN7523.jpg'
Pic[1] = 'gallery/_th/th_DSCN7525.jpg'
Pic[2] = 'gallery/_th/th_DSCN7526.jpg'
Pic[3] = 'gallery/_th/th_DSCN7536.jpg'
Pic[4] = 'gallery/_th/th_DSCN7544.jpg'
Pic[5] = 'gallery/_th/th_DSCN7545.jpg'
Pic[6] = 'gallery/_th/th_DSCN7546.jpg'
Pic[7] = 'gallery/_th/th_DSCN7548.jpg'
Pic[8] = 'gallery/_th/th_DSCN7550.jpg'

//--------

var nn = (navigator.appName.indexOf("Netscape") != -1);
var t;
var j=0;
var p=Pic.length;
var preLoad = new Array();
for (i=0; i<p; i++) { preLoad[i]=new Image(); preLoad[i].src = Pic[i]; }

function runSlideShow(){
	if (document.all){
		document.images.SlideShow.style.filter="blendTrans(duration=2)";
		document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShow.filters.blendTrans.Apply();
	}
	if (document.all || document.getElementById){document.images.SlideShow.src = preLoad[j].src;}else{
		document.FloatSlideShow.document.images["SlideShow"].src = preLoad[j].src;
	}
	if (document.all){document.images.SlideShow.filters.blendTrans.Play();}
	j=j+1;if (j>(p-1))j=0;t=setTimeout('runSlideShow()', slideShowSpeed);
}

var dD=document,dH=dD.html,dB=dD.body,px=dD.layers?'':'px';
function floatSS(iX,iY,id){
	var L=dD.getElementById?dD.getElementById(id):dD.all?dD.all[id]:dD.layers[id];		
	this[id+'O']=L;if(dD.layers)L.style=L;L.nX=L.iX=iX;L.nY=L.iY=iY;
	L.P=function(x,y){this.style.left=x+px;this.style.top=y+px;};L.Fss=function(){var pX, pY;	
	pX=(this.iX >=0)?0:nn?innerWidth:nn&&dH.clientWidth?dH.clientWidth:dB.clientWidth;	
	pY=nn?pageYOffset:nn&&dH.scrollTop?dH.scrollTop:dB.scrollTop;	
	if(this.iY<0)pY+=nn?innerHeight:nn&&dH.clientHeight?dH.clientHeight:dB.clientHeight;	
	this.nX+=.1*(pX+this.iX-this.nX);this.nY+=.1*(pY+this.iY-this.nY);this.P(this.nX,this.nY);
	setTimeout(this.id+'O.Fss()',33);};return L;
}
floatSS(whereX,whereY,'FloatSlideShow').Fss();

