// (C) 2002 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 SlideShowSpeedPPT = 4000;

// Set the duration of crossfade (in seconds)
var CrossFadeDurationPPT = 3;

var PicturePPT = new Array(); // don't change this
var CaptionPPT = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

PicturePPT[1]  = 'http://www.makelogic.com/images/Slide1.GIF';
PicturePPT[2]  = 'http://www.makelogic.com/images/Slide2.GIF';
PicturePPT[3]  = 'http://www.makelogic.com/images/Slide3.GIF';
PicturePPT[4]  = 'http://www.makelogic.com/images/Slide4.GIF';
PicturePPT[5]  = 'http://www.makelogic.com/images/Slide5.GIF';
PicturePPT[6]  = 'http://www.makelogic.com/images/Slide6.GIF';
PicturePPT[7]  = 'http://www.makelogic.com/images/Slide7.GIF';
PicturePPT[8]  = 'http://www.makelogic.com/images/Slide8.GIF';
PicturePPT[9]  = 'http://www.makelogic.com/images/Slide9.GIF';
PicturePPT[10]  = 'http://www.makelogic.com/images/Slide10.GIF';
PicturePPT[11]  = 'http://www.makelogic.com/images/Slide11.GIF';
PicturePPT[12]  = 'http://www.makelogic.com/images/Slide12.GIF';
PicturePPT[13]  = 'http://www.makelogic.com/images/Slide13.GIF';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

CaptionPPT[1]  = "MakeLogic IT Consultancy";
CaptionPPT[2]  = "MakeLogic IT Consultancy";
CaptionPPT[3]  = "MakeLogic IT Consultancy";
CaptionPPT[4]  = "MakeLogic IT Consultancy";
CaptionPPT[5]  = "MakeLogic IT Consultancy";
CaptionPPT[6]  = "MakeLogic IT Consultancy";
CaptionPPT[7]  = "MakeLogic IT Consultancy";
CaptionPPT[8]  = "MakeLogic IT Consultancy";
CaptionPPT[9]  = "MakeLogic IT Consultancy";
CaptionPPT[10]  = "MakeLogic IT Consultancy";
CaptionPPT[11]  = "MakeLogic IT Consultancy";
CaptionPPT[12]  = "MakeLogic IT Consultancy";
CaptionPPT[13]  = "MakeLogic IT Consultancy";

// =====================================
// Do not edit anything below this line!
// =====================================

var tssPPT;
var issPPT;
var jssPPT = 1;
var pssPPT = PicturePPT.length-1;

var preLoadPPT = new Array();
for (issPPT = 1; issPPT < pssPPT+1; issPPT++){
preLoadPPT[issPPT] = new Image();
preLoadPPT[issPPT].src = PicturePPT[issPPT];}

function runPPTShow(){
if (document.all){
document.images.Slides.style.filter="blendTrans(duration=2)";
document.images.Slides.style.filter="blendTrans(duration=CrossFadeDurationPPT)";
document.images.Slides.filters.blendTrans.Apply();}
document.images.Slides.src = preLoadPPT[jssPPT].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jssPPT];
if (document.all) document.images.Slides.filters.blendTrans.Play();
jssPPT = jssPPT + 1;
if (jssPPT > (pssPPT)) jssPPT=1;
tssPPT = setTimeout('runPPTShow()', SlideShowSpeed);
}