// IDX Broker Slideshow version 1.0 // Copyright ¿2012 All rights reserved. // This script exists soley for the purposes of allowing real estate professionals to display // their property information easily on their own web site. All other use prohibited. var c; var timeout = 3000; var cwi = 0; document.writeln(''); var next = 1; prev = 8 - 1; document.writeln('
'); document.writeln('
'); document.writeln('Slideshow image'); document.writeln('
'); document.writeln('
'); document.writeln('
'); document.writeln('
'); document.writeln(''); document.writeln(''); document.writeln(''); document.writeln('
'); function play() { urlVar = ''; document.images.ssImage.src = preLoad.src; document.getElementById('IDX-ssImageURL').href = properties[cwi][6]; document.getElementById('IDX-priceLine').innerHTML = urlVar+'$'+properties[cwi][0]+''; document.getElementById('IDX-addressLine').innerHTML = urlVar+properties[cwi][1]+''; document.getElementById('IDX-cszLine').innerHTML = urlVar+properties[cwi][2]+''; document.getElementById('IDX-bedsLine').innerHTML = urlVar+'Beds: '+properties[cwi][7]+''; document.getElementById('IDX-bathsLine').innerHTML = urlVar+'Baths: '+properties[cwi][8]+''; document.getElementById('IDX-remarksLine').innerHTML = urlVar+properties[cwi][9]+''; preLoad = new Image(); preLoad.src = properties[next][3]; update(); c = setTimeout('play()', timeout) } // end play() function update() { cwi = next; genNext(); genPrev(); } function genNext() { next = cwi + 1; if (next >= 8) next = 0; } // end genNext function genPrev() { prev = cwi - 1; if (prev < 0) prev = 8 - 1; } // end genPrev var properties = new Array(8); properties[0] = new Array('188,000','2730 Green Canyon Drive ','Meridian, ID 83642 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/7/IMLS98486147.jpg','98486147','082','http://www.idahohomeshop.com/idx/details.php?listingID=98486147&idxID=082','4','3','Thousand Springs Gem! New Paint and carpet! Living room feat...'); properties[1] = new Array('124,900','14510 N Presidio Loop ','Nampa, ID 83651 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/2/IMLS98484742.jpg','98484742','082','http://www.idahohomeshop.com/idx/details.php?listingID=98484742&idxID=082','3','2','Popular split bedroom design. Vaulted ceilings in living roo...'); properties[2] = new Array('113,900','8 N Benewah Dr ','Nampa, ID 83651 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/7/IMLS98484767.jpg','98484767','082','http://www.idahohomeshop.com/idx/details.php?listingID=98484767&idxID=082','3','2','Single level 3 bedroom 2 bath home features new paint and ca...'); properties[3] = new Array('98,900','4341 E Lochsa River Dr ','Nampa, ID 83686 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/0/IMLS98484740.jpg','98484740','082','http://www.idahohomeshop.com/idx/details.php?listingID=98484740&idxID=082','3','2','Popular split bedroom floor plan plus bonus room!Vaulted c...'); properties[4] = new Array('89,500','9517 W Portola Dr ','Boise, ID 83709 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/1/IMLS98485951.jpg','98485951','082','http://www.idahohomeshop.com/idx/details.php?listingID=98485951&idxID=082','3','2','Well maintained 3 bedroom 2 bath home features New Paint, an...'); properties[5] = new Array('69,000','384 E 2nd St ','Kuna, ID 83634 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/4/IMLS98484264.jpg','98484264','082','http://www.idahohomeshop.com/idx/details.php?listingID=98484264&idxID=082','3','1','Single level 3 bedroom 1 bath with attached 1 car garage.H...'); properties[6] = new Array('67,500','608 Donna Drive ','Nampa, ID 83686 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/4/IMLS98486674.jpg','98486674','082','http://www.idahohomeshop.com/idx/details.php?listingID=98486674&idxID=082','3','2','Single level ranch style 3 bedroom 2 bath home. Located slig...'); properties[7] = new Array('34,900','372 Randolph Avenue ','Melba, ID 83641 ','http://imls.fnismls.com/Paragon/ListingPictures/IMLS/2/IMLS98486542.jpg','98486542','082','http://www.idahohomeshop.com/idx/details.php?listingID=98486542&idxID=082','2','1','Single level with below grade offers 2 bedrooms 1 bath on ma...'); var urlVar; var preLoad = new Image(); preLoad.src = properties[cwi][3]; onLoad = play();