var photos=new Array()
var photoslink=new Array()
var which=0

//define images. You can have as many as you want:
//photos[0]="images/commom/partners-logo4.jpg"
//photos[0]="images/commom/partners-logo4.jpg"
//photos[1]="images/commom/partners-logo2.jpg"
//<!--photos[2]="images/commom/partners-logo3.jpg"-->
//photos[2]="images/commom/theegarten-pactec.jpg"
//photos[3]="images/commom/pharmapack.gif"
//photos[3]="images/commom/partners-logo3.jpg"
//photos[3]="../images/home/dhtml-img4.jpg"<img src="../images/setup/img1.jpg" width=267 height=181 alt="" border="0">
photos[0]="images/home/partners/Axomatic.jpg";
photos[1]="images/home/partners/honeywell.jpg";
photos[2]="images/home/partners/sarong.jpg";
photos[3]="images/home/partners/Acg.jpg";
photos[4]="images/home/partners/Proditec.jpg";
photos[5]="images/home/partners/Effytec.jpg";
photos[6]="images/home/partners/pharma-pac.jpg";
photos[7]="images/home/partners/Trucking.jpg";
photos[8]="images/home/partners/Glatt.jpg";
//photos[9]="images/home/partners/Iwka.jpg";
//photos[10]="images/home/partners/Brimrose.jpg";
//photos[11]="images/home/partners/Volpak.jpg"

//Specify <a href="../partners/partner.htm">Pam Pac</a><img src="../images/setup/img1.jpg" width=267 height=181 alt="" border="0">whether images should be linked or not (1=linked)
var linkornot=0
//partner-alliances/partner-alliances.php
//Set corresponding URLs for above images. Define ONLY if variable linkornot equals "1"
photoslink[0]="partner-alliances/partner-alliances.php"
photoslink[1]="partner-alliances/partner-alliances.php"
photoslink[2]="partner-alliances/partner-alliances.php"
photoslink[3]="partner-alliances/partner-alliances.php"
photoslink[4]="partner-alliances/partner-alliances.php"
photoslink[5]="partner-alliances/partner-alliances.php"
photoslink[6]="partner-alliances/partner-alliances.php"
photoslink[7]="partner-alliances/partner-alliances.php"
photoslink[8]="partner-alliances/partner-alliances.php"
//photoslink[9]="partner-alliances/partner-alliances.php"
//photoslink[10]="partner-alliances/partner-alliances.php"
//photoslink[11]="partner-alliances/partner-alliances.php"
//photoslink[2]="#"
//photoslink[3]="#"
//do NOT edit pass this line<img src="../images/commom/partners-logo1.jpg" width=131 height=40 alt="" border="0">

var preloadedimages=new Array()
for (i=0;i<photos.length;i++){
preloadedimages[i]=new Image()
preloadedimages[i].src=photos[i]
}


function applyeffect(){
if (document.all && photoslider.filters){
photoslider.filters.revealTrans.Transition=14;  //16,12,21,22 14 //Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}



function playeffect(){
if (document.all && photoslider.filters)
photoslider.filters.revealTrans.play()
}

function keeptrack(){
//////window.status="Image "+(which+1)+" of "+photos.length
}


function forward1(){

if (which<photos.length-1){
which++
applyeffect()
document.images.photoslider.src=photos[which]

playeffect()
keeptrack()
setTimeout("forward1();",3000)
}
else
{
	which=0;	
	applyeffect()
	document.images.photoslider.src=photos[which]
	playeffect()
	keeptrack()
	setTimeout("forward1();",3000)
}
}

function transport(){

window.location=photoslink[which]
}
