// CodeAve.com JavaScript SlideShow // Created from the JavaScript SlideShow ScriptWriter on 10-02-2000 // http://www.codeave.com var pictures = new Array // List all the pictures in the slideshow here ('prefpropdetail.asp?image=150&address=Highgate&id=998&price=775000','prefpropdetail.asp?image=39&address=Highgate&id=968&price=1300000','prefpropdetail.asp?image=255&address=Highgate&id=1030&price=450000','prefpropdetail.asp?image=225&address=Highgate&id=1022&price=1185000','prefpropdetail.asp?image=269&address=Highgate&id=1034&price=715000','prefpropdetail.asp?image=120&address=Highgate&id=990&price=639950'); var picture_num = 0; var current_picture = new Image(); current_picture.src = pictures[picture_num]; function start_show() { // Time is in seconds X 1000 slideshow(); setInterval("slideshow()", 6000); } function slideshow() { picture_num++; if (picture_num == pictures.length) { picture_num = 0; } current_picture.src = pictures[picture_num]; prefPropFrame.location.href = current_picture.src; }