<!-- Begin
var timeDelay = 5; // change delay time in seconds
var Pix = new Array
("http://www.edinburgh-scotland.biz/newington/apostmission.jpg" 
,"http://www.edinburgh-scotland.biz/newington/sherpix.jpg"
,"http://www.edinburgh-scotland.biz/newington/castleoclouts.jpg" 
,"http://www.edinburgh-scotland.biz/newington/deaconess.jpg" 
,"http://www.edinburgh-scotland.biz/newington/edinuni.jpg"
,"http://www.edinburgh-scotland.biz/newington/sherpix.jpg"
,"http://www.edinburgh-scotland.biz/newington/arthurst.jpg"
,"http://www.edinburgh-scotland.biz/newington/longmore.jpg" 
,"http://www.edinburgh-scotland.biz/newington/mintonorth.jpg" 
,"http://www.edinburgh-scotland.biz/newington/parkers.jpg"  
,"http://www.edinburgh-scotland.biz/newington/pleasance.jpg" 
,"http://www.edinburgh-scotland.biz/newington/mintosouth.jpg" 
,"http://www.edinburgh-scotland.biz/newington/sherpix.jpg"
,"http://www.edinburgh-scotland.biz/newington/prestonfieldhouse.jpg" 
,"http://www.edinburgh-scotland.biz/newington/mintost1899a.jpg"
,"http://www.edinburgh-scotland.biz/newington/simonsq.jpg" 
,"http://www.edinburgh-scotland.biz/newington/southbridge.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPix"].src = PicCurrent.src;
}
//  End -->