var timeDelay = 5; // change delay time in seconds
var Pix = new Array
("images/banners_c.gif" 
,"images/banners_m.gif"  
);
var Links = new Array
("http://www.chakari.net" 
,"mailto:megankerr@xsinet.co.za" 
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
slideshow();
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["Banner"].src = PicCurrent.src;
}
function BannerLink() {
	location.href = Links[PicCurrentNum];
}
