var SlideShowSpeed=5000;var CrossFadeDuration=1.5;var Picture=new Array();var Caption=new Array();Picture[1]='images/photos/ashton-lane-glasgow-west-end.jpg';Picture[2]='images/photos/buchanan-street-shopping.jpg';Picture[3]='images/photos/byres-road.jpg';Picture[4]='images/photos/glasgow-school-of-art.jpg';Picture[5]='images/photos/tall-ship-at-glasgow.jpg';Picture[6]='images/photos/gallery-of-modern-art.jpg';Picture[7]='images/photos/glasgow-secc.jpg';Picture[8]='images/photos/hampden.jpg';Caption[1]="Ashton Lane, Glasgow West End";Caption[2]="Shopping in Buchanan Street";Caption[3]="Glasgow West End - Byres Road";Caption[4]="Glasgow School of Art";Caption[5]="The Tall Ship at Glasgow Harbour";Caption[6]="Gallery of Modern Art";Caption[7]="Scottish Exhibition & Conference Centre";Caption[8]="Hampden - Scotland's National Stadium";var tss;var lss;var iss;var jss=1;var pss=Picture.length-1;var preLoad=new Array();for(iss=1;iss<pss+1;iss++){preLoad[iss]=new Image();preLoad[iss].src=Picture[iss];}
function runSlideShow(){if(document.all){document.images.PictureBox.style.filter="blendTrans(duration=2)";document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src=preLoad[jss].src;document.getElementById('PictureBox').title=Caption[jss];document.getElementById('PictureBoxCaption').innerHTML=Caption[jss];if(document.all)document.images.PictureBox.filters.blendTrans.Play();lss=jss;jss=jss+1;if(jss>(pss))jss=1;tss=setTimeout('runSlideShow()',SlideShowSpeed);}