<!--
var num=1
img1 = new Image ()
img1.src = "../current_listings/BeachCottage_1.jpg"
img2 = new Image ()
img2.src = "../current_listings/BeachCottage_2.jpg"
img3 = new Image ()
img3.src = "../current_listings/BeachCottage_3.jpg"
img4 = new Image ()
img4.src = "../current_listings/BeachCottage_4.jpg"
img5 = new Image ()
img5.src = "../current_listings/BeachCottage_5.jpg"
img6 = new Image ()
img6.src = "../current_listings/BeachCottage_6.jpg"
img7 = new Image ()
img7.src = "../current_listings/BeachCottage_7.jpg"
img8 = new Image ()
img8.src = "../current_listings/BeachCottage_8.jpg"
img9 = new Image ()
img9.src = "../current_listings/BeachCottage_9.jpg"
img10 = new Image ()
img10.src = "../current_listings/BeachCottage_10.jpg"
img11 = new Image ()
img11.src = "../current_listings/BeachCottage_11.jpg"
img12 = new Image ()
img12.src = "../current_listings/BeachCottage_12.jpg"
img13 = new Image ()
img13.src = "../current_listings/BeachCottage_13.jpg"
img14 = new Image ()
img14.src = "../current_listings/BeachCottage_14.jpg"
img15 = new Image ()
img15.src = "../current_listings/BeachCottage_15.jpg"
img16 = new Image ()
img16.src = "../current_listings/BeachCottage_16.jpg"
img17 = new Image ()
img17.src = "../current_listings/BeachCottage_17.jpg"
img18 = new Image ()
img18.src = "../current_listings/BeachCottage_18.jpg"
img19 = new Image ()
img19.src = "../current_listings/BeachCottage_19.jpg"

function ssNext(){
num=num+1
if (num==20)
{num=1}
document.fhome.src=eval("img"+num+".src")
}

function ssBack(){
num=num-1
if (num==0)
{num=19}
document.fhome.src=eval("img"+num+".src")
}
