// JavaScript Document
// Random Image Script
// copyright 9th September 2008 by Stephen Chapman
// http://javascript.about.com
// permission to use this Javascript on your web page is granted
// provided that all of the code below in this script (including these
// comments) is used without any alteration
var mqAry1=['http://www.edinburghinpictures.co.uk/images/random/image01.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image02.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image03.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image04.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image05.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image06.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image07.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image08.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image09.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image10.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image11.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image12.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image13.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image14.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image15.jpg','http://www.edinburghinpictures.co.uk/images/random/image16.jpg','http://www.edinburghinpictures.co.uk/images/random/image17.jpg','http://www.edinburghinpictures.co.uk/images/random/image18.jpg','http://www.edinburghinpictures.co.uk/images/random/image19.jpg','http://www.edinburghinpictures.co.uk/images/random/image20.jpg','http://www.edinburghinpictures.co.uk/images/random/image21.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image22.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image23.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image24.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image25.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image26.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image27.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image28.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image29.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image30.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image31.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image32.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image33.jpg', 'http://www.edinburghinpictures.co.uk/images/random/image34.jpg',];

function randImg(im,w,h,t,ary) {this.t = t*1000; this.m1 = []; this.m2 = []; for (var i=ary.length-1; i>=0; i--) {this.m1[i] = document.createElement('img');this.m1.src = ary[i]; this.m2[i] = ary[i];} this.d = document.getElementById(im); this.m = document.createElement('img'); this.m.width=w; this.m.height=h; this.m.alt = 'random image'; this.m.src = ary[Math.floor(Math.random()*ary.length)]; this.d.appendChild(this.m);} function replaceImg(self) {self.m.src = self.m2[Math.floor(Math.random()*self.m2.length)]; self.d.appendChild(self.m); setTimeout(function() {replaceImg(self)},self.t);}
