
 
// (C) 2002 www.CodeLifter.com <http://www.CodeLifter.com>
// <http://www.codelifter.com>
// Free for all users, but leave in this header.
 
// ==============================
// Set the following variables...
// ==============================
 
// Set the slideshow speed (in milliseconds)
var SlideShowSpeed5 = 3800;
 
// Set the duration of crossfade (in seconds)
var CrossFadeDuration5 = 4;
 
var Picture5 = new Array(); // don't change this
var Caption5 = new Array(); // don't change this
 

 
Picture5[1]  = 'food images/regular/Cuisines9.jpg';
Picture5[2]  = 'food images/regular/Cuisines10.jpg';



 
Caption5[1]  = "";
Caption5[2]  = "";



 
var tss5;
var iss5;
var jss5 = 1;
var pss5 = Picture5.length-1;
 
var preLoad5 = new Array();
for (iss5 = 1; iss5 < pss5+1; iss5++){
preLoad5[iss5] = new Image();
preLoad5[iss5].src = Picture5[iss5];}
 
function runSlideShow5(){
if (document.all){
document.images.PictureBox5.style.filter="blendTrans(duration=2)";
document.images.PictureBox5.style.filter="blendTrans(duration=CrossFadeDuration3)";
document.images.PictureBox5.filters.blendTrans.Apply();}
document.images.PictureBox5.src = preLoad5[jss5].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss3];
if (document.all) document.images.PictureBox5.filters.blendTrans.Play();
jss5 = jss5 + 1;
if (jss5 > (pss5)) jss5=1;
tss5 = setTimeout('runSlideShow5()', SlideShowSpeed5);
}
 
