// FOR FEATURED BOATS !!!
// Use the following variable to specify the number of images
var NumberOfImages = 5

var img = new Array(NumberOfImages)

// Use the following variables to specify the image names:
img[0] = '<a href="view_boats.php?ccode=128819989141067&startitem=&startpage=&endpage=&current=&category=&make=&model=&condition="><img src="samImages/HOME/featured-boats/2011MalibuVLX.jpg" width="318" height="200" title="View this listing" /></a><p>2011 Malibu VLX</p>'

img[1] = '<a href="view_boats.php?ccode=128518975079068&startitem=&startpage=&endpage=&current=&category=&make=&model=&condition="><img src="samImages/HOME/featured-boats/2011SeaRay260Sundeck.jpg" width="318" height="200"  title="View this listing" /></a><p>2011 Sea Ray 260 Sundeck</p>'

img[2] = '<a href="view_boats.php?ccode=128784669145701&startitem=&startpage=&endpage=&current=&category=&make=&model=&condition="><img src="samImages/HOME/featured-boats/seaRay220.jpg" width="318" height="200"  title="View this listing" /></a><p>2011 Sea Ray 220 Sundeck</p>'

img[3] = '<a href="view_boats.php?ccode=128525389789570&startitem=&startpage=&endpage=&current=&category=&make=&model=&condition="><img src="samImages/HOME/featured-boats/205.jpeg" width="318" height="200"  title="View this listing" /></a><p>2011 Sea Ray 205 Sport</p>'

img[4] = '<a href="view_boats.php?ccode=131352807750203&startitem=10&startpage=1&endpage=4&current=2&category=&make=&model=&condition="><img src="samImages/HOME/featured-boats/A20.jpg" width="318" height="200"  title="View this listing" /></a><p>2011 Axis A20</p>'

var imgNumber = 0

function NextImage()
{
    imgNumber++
    if (imgNumber == NumberOfImages)
        imgNumber = 0
document.getElementById('myText').innerHTML = img[imgNumber];
}

function PreviousImage()
{
    imgNumber--
    if (imgNumber < 0)
        imgNumber = NumberOfImages - 1
document.getElementById('myText').innerHTML = img[imgNumber];
}



