
// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

var SlideShowSpeed = 3000;

var CrossFadeDuration = 2;

var Picture = new Array(); 
var Caption = new Array(); 
var Description = new Array(); 
var showHot = false;    

Picture[1]  = 		'images/gallery/fish/	crazy-fish-1.jpg	';
Picture[2]  =		'images/gallery/fish/	crazy-fish-2.jpg	';
Picture[3]  = 		'images/gallery/fish/	crazy-fish.jpg	';
Picture[4]  = 		'images/gallery/fish/	fish-1.jpg	';
Picture[5]  = 		'images/gallery/fish/	fish-2.jpg	';
Picture[6]  =		'images/gallery/fish/	fish-3.jpg	';
Picture[7]  =		'images/gallery/fish/	fish-4.jpg	';
Picture[8]  =		'images/gallery/fish/	fish-5.jpg	';
Picture[9]  = 		'images/gallery/fish/	fish-6.jpg	';
				
				
				
				
				
				
				


Caption[1]  = 		"	crazy-fish-1.jpg	";
Caption[2]  = 		"	crazy-fish-2.jpg	";
Caption[3]  = 		"	crazy-fish.jpg	";
Caption[4]  = 		"	fish-1.jpg	";
Caption[5]  = 		"	fish-2.jpg	";
Caption[6]  = 		"	fish-3.jpg	";
Caption[7]  = 		"	fish-4.jpg	";
Caption[8]  = 		"	fish-5.jpg	";
Caption[9]  = 		"	fish-6.jpg	";






Description[1]  = 	"	 ";

Description[2]  = 	"	 ";

Description[3]  = 	"	 ";

Description[4]  = 	"	 ";

Description[5]  = 	"	 ";

Description[6]  = 	"	 ";

Description[7] = 	"	 ";
Description[8]  = 	"	 ";
Description[9]  = 	"	 ";





var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="1") jss = 1; 
if (how=="2") jss = 2; 
if (how=="3") jss = 3; 
if (how=="4") jss = 4; 
if (how=="5") jss = 5; 
if (how=="6") jss = 6; 
if (how=="7") jss = 7; 
if (how=="8") jss = 8; 
if (how=="9") jss = 9;



if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration2)";
document.images.PictureBox.style.filter="blendTrans(durationCrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply()}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.getElementById) document.getElementById("DescriptionBox").innerHTML= Description[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}


