
 
// (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 SlideShowSpeed3 = 3800;
 
// Set the duration of crossfade (in seconds)
var CrossFadeDuration3 = 4;
 
var Picture3 = new Array(); // don't change this
var Caption3 = new Array(); // don't change this
 

 
Picture3[1]  = 'food images/regular/Cuisines7.jpg';
Picture3[2]  = 'food images/regular/Cuisines8.jpg';



 
Caption3[1]  = "";
Caption3[2]  = "";



 
var tss3;
var iss3;
var jss3 = 1;
var pss3 = Picture3.length-1;
 
var preLoad3 = new Array();
for (iss3 = 1; iss3 < pss3+1; iss3++){
preLoad3[iss3] = new Image();
preLoad3[iss3].src = Picture3[iss3];}
 
function runSlideShow3(){
if (document.all){
document.images.PictureBox4.style.filter="blendTrans(duration=2)";
document.images.PictureBox4.style.filter="blendTrans(duration=CrossFadeDuration3)";
document.images.PictureBox4.filters.blendTrans.Apply();}
document.images.PictureBox4.src = preLoad3[jss3].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss3];
if (document.all) document.images.PictureBox4.filters.blendTrans.Play();
jss3 = jss3 + 1;
if (jss3 > (pss3)) jss3=1;
tss3 = setTimeout('runSlideShow3()', SlideShowSpeed3);
}
 
