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="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'
nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0
setTimeout("rotateimage()",pause)
}
}

function rotateimage(){
if (ie4||dom){
resetit2(curcanvas)
var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
var temp='setInterval("movepic()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else
document.images.defaultslide.src=dropimages[curimageindex]
linkindex=curimageindex
curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0
}

function rotatelink(){
window.location=droplinks[linkindex]
}

function resetit2(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="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'
rotateimage()
}


//Drop-in slideshow II (hyperlinked)- 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='100px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
var slideshow_height='45px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
var pause=5000 //SET PAUSE BETWEEN SLIDE (2000=2 seconds)


var dropimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
dropimages[0]="images/slides/slide2.gif";
dropimages[1]="images/slides/slide3.gif";
dropimages[2]="images/slides/slide2.gif";
dropimages[3]="images/slides/slide3.gif";
dropimages[4]="images/slides/slide2.gif";
dropimages[5]="images/slides/slide3.gif";
dropimages[6]="images/slides/slide2.gif";
dropimages[7]="images/slides/slide3.gif";
dropimages[7]="images/slides/slide2.gif";

var droplinks=new Array()
//SET IMAGE URLs. Use "" if you wish particular image to NOT be linked:
droplinks[0]="http://www.gospelmusicians.com/index.php";
droplinks[1]="http://www.cyclebiker.com";
droplinks[2]="http://www.gospelmusicians.com/index.php";
droplinks[3]="http://www.cyclebiker.com";
droplinks[4]="http://www.gospelmusicians.com/index.php";
droplinks[5]="http://www.cyclebiker.com";
droplinks[6]="http://www.gospelmusicians.com/index.php";
droplinks[7]="http://www.cyclebiker.com";
droplinks[7]="http://www.gospelmusicians.com/index.php";

////NO need to edit beyond here/////////////

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

var degree=10
var curcanvas="canvas0"
var curimageindex=0
var nextimageindex=1
