// Copyright 2006. William Ukoh @ http://www.williamukoh.com or 234 802 302 5860. All rights reserved worldwide.

// do not edit anything below this line, if not you go spoil am O!
var t;
var start = false;
var j = 0;
var p = Pic.length;
var preLoad = new Array();

//Preload images
for (i = 0; i < p; i++) {
	MM_preloadImages(Pic[i]);
}

for (i = 0; i < p; i++) {
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i];
}

//THE ESSENCE OF THIS IS TO PREVENT STARTING THE SLIDE SHOW WHEN THE PAGE LOADS
function check(){
	
	if(!start){
		start = true;
		var checkID = setTimeout('check()',slideShowSpeed);
	}
	else{
		runSlideShow();
		clearTimeout('checkID');
	}
}

function runSlideShow() {
	if (document.all) {
	document.images.SlideShow.style.filter="blendTrans(duration=2)";
	document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;

document.getElementById("imageLink").href = link[j];
document.getElementById("imageSlip1").href = link[j] + "#articles";
document.getElementById("imageSlip2").href = link[j] + "#articles";
document.getElementById("imageSlip3").href = link[j] + "#articles";

if (document.all) {
	document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;

if (j > (p - 1)) j = 0;
	t = setTimeout('runSlideShow()', slideShowSpeed);
}

//  End -->