<!-- Begin
// Set slideShowSpeed (milliseconds)
var Food1Speed = 2500;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Img = new Array();
// to add more images, just continue
// the pattern, adding to the array below
 
Img[0] = 'images/food1.jpg'
Img[1] = 'images/food2.jpg'
Img[2] = 'images/food3.jpg'
Img[3] = 'images/food4.jpg'
Img[4] = 'images/food5.jpg'
Img[5] = 'images/food6.jpg'
Img[6] = 'images/food7.jpg'
Img[7] = 'images/food8.jpg'
 
// do not edit anything below this line
var t;
var j = 0;
var p = Img.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Img[i];
}
function runFood1() {
if (document.all) {
document.images.Food1.style.filter="blendTrans(duration=10)";
document.images.Food1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.Food1.filters.blendTrans.Apply();
}
document.images.Food1.src = preLoad[j].src;
if (document.all) {
document.images.Food1.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runFood1()', Food1Speed);
}



// Set slideShowSpeed (milliseconds)
var Food2Speed = 2600;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
 
Pic[1] = 'images/food8.jpg'
Pic[4] = 'images/food7.jpg'
Pic[0] = 'images/food6.jpg'
Pic[7] = 'images/food5.jpg'
Pic[3] = 'images/food4.jpg'
Pic[6] = 'images/food3.jpg'
Pic[2] = 'images/food2.jpg'
Pic[5] = 'images/food1.jpg'
 
// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runFood2() {
if (document.all) {
document.images.Food2.style.filter="blendTrans(duration=10)";
document.images.Food2.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.Food2.filters.blendTrans.Apply();
}
document.images.Food2.src = preLoad[j].src;
if (document.all) {
document.images.Food2.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runFood2()', Food2Speed);
}



// Set slideShowSpeed (milliseconds)
var Food3Speed = 2550;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
 
Pic[6] = 'images/food3.jpg'
Pic[0] = 'images/food1.jpg'
Pic[1] = 'images/food2.jpg'
Pic[3] = 'images/food8.jpg'
Pic[7] = 'images/food7.jpg'
Pic[5] = 'images/food5.jpg'
Pic[4] = 'images/food4.jpg'
Pic[2] = 'images/food6.jpg'
 
// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runFood3() {
if (document.all) {
document.images.Food3.style.filter="blendTrans(duration=10)";
document.images.Food3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.Food3.filters.blendTrans.Apply();
}
document.images.Food3.src = preLoad[j].src;
if (document.all) {
document.images.Food3.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runFood3()', Food3Speed);
}
//  End -->
