//Drop-in slideshow- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use

var slideshow_width='220px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
var slideshow_height='192px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
var pause=3500 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)



var picwidth=60;
var picheight=80;
var pichspace=80;// ((slideshow_width) - (picwidth))/2
var picvspace=0

var cntp=0;
var x=0;								
var dropimages=new Array()
var labels_url=new Array()
var labels=new Array()
var urls=new Array()

var preloadedimages=new Array()
for (p=0;p<dropimages.length;p++){
	preloadedimages[p]=new Image()
	preloadedimages[p].src=dropimages[p]
}

var ie4=document.all
var dom=document.getElementById

if (ie4||dom)
	document.write('<div style="position:relative;top:0px;left:0px;width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" align="center" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';top:-'+slideshow_height+'"></div><div id="canvas1" align="center" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';top:-'+slideshow_height+'"></div></div>')
else
	document.write('<img border="0" name="defaultslide" src="'+dropimages[0]+'">')

var curpos=parseInt(slideshow_height)*(-1)
var degree=10
var curcanvas="canvas0"
var curimageindex=0
var nextimageindex=1


function movepic(){
	if (curpos<0){
		curpos=Math.min(curpos+degree,0)
		tempobj.style.top=curpos+"px"
	}
	else{
		clearInterval(dropslide)		
		nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"

		tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
		tempobj.innerHTML='<a href="'+ urls[nextimageindex] +'"><img src="'+dropimages[nextimageindex]+'" border="1" width="'+picwidth + '" height="' + picheight +'" hspace="' + pichspace +'" vspace="' + picvspace +'" style="border-color:#000000 "></a>'	+
		'<br><span class="color1Bold" style="align: center; width: '+slideshow_width+'">'+
		labels[curimageindex]

		if(nextimageindex<dropimages.length-1){
			tempobj.innerHTML+='<a href="'+ urls[nextimageindex+1] +'"><img src="'+dropimages[nextimageindex+1]+'" border="1" width="'+picwidth + '" height="' + picheight +'" hspace="' + pichspace +'" vspace="' + picvspace +'" style="border-color:#000000 "></a>'	+
			'<br><span class="color1Bold" style="align: center; width: '+slideshow_width+'">'+
			labels[curimageindex+1]+'</span>';
			nextimageindex++
			curimageindex++
		}

		nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0		


		setTimeout("rotateimage()",pause)
		resetit(curcanvas);
	}
}

function rotateimage(){

	if (ie4||dom){
		resetit(curcanvas)
		var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
		crossobj.style.zIndex++
		var temp='setInterval("movepic()",30)'
		dropslide=eval(temp)
		curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
	}
	else
		document.images.defaultslide.src=dropimages[curimageindex]
		curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0

}

function resetit(what){
	curpos=parseInt(slideshow_height)*(-1)
	var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
	crossobj.style.top=curpos+"px"
}

function startit(){
	var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
	crossobj.innerHTML='<a href="'+ urls[curimageindex] +'" target="_blank"><img src="'+dropimages[curimageindex]+'" border="1" width="' + picwidth +'" height="'+picheight+'" hspace="' + pichspace +'" vspace="' + picvspace +'" style="border-color:#000000 "></a>'+
		'<br><span class="color1Bold" style="align: center; width: '+slideshow_width+'">'+
		labels[curimageindex];
		
	crossobj.innerHTML+='<a href="'+ urls[curimageindex+1] +'" target="_blank"><img src="'+dropimages[curimageindex+1]+'" border="1" width="' + picwidth +'" height="'+picheight+'" hspace="' + pichspace +'" vspace="' + picvspace +'" style="border-color:#000000 "></a>'+
		'<br><span class="color1Bold" style="align: center; width: '+slideshow_width+'">'+
		labels[curimageindex+1]+'</span>';	

	curimageindex++
	nextimageindex++
	rotateimage()
}
if (ie4||dom)
	window.onload=startit
else
	setInterval("rotateimage()",pause)


