var myJSONObject = {"listing": [{"name": "2007 Southport 28 CC Tournament ...", "price": "$124,990.00 Firm", "year": "2007 ", "manufacturer": "Southport Boatworks", "model": "28 CC Tournament Edition ", "listingHref": "boat-listing-detail.html?ID=12", "photo": "media/images/boats/12/fm_photo_00002120_preview.jpg"},{"name": "2007 Caravelle 232 Interceptor", "price": "$44,990.00 Firm", "year": "2007", "manufacturer": "Caravelle", "model": "232 Interceptor", "listingHref": "boat-listing-detail.html?ID=77", "photo": "media/images/boats/77/fm_photo_00000629_preview.jpg"},{"name": "2007 Caravelle 187 Bowrider", "price": "$25,990.00 Firm", "year": "2007", "manufacturer": "Caravelle", "model": "187 Bow Rider", "listingHref": "boat-listing-detail.html?ID=80", "photo": "media/images/boats/80/fm_photo_00000630_preview.jpg"},{"name": "2007 Pioneer 186 Cape Island Bay...", "price": "$28,990.00 Firm", "year": "2007", "manufacturer": "Pioneer", "model": "186 Cape Island", "listingHref": "boat-listing-detail.html?ID=128", "photo": "media/images/boats/128/fm_photo_00000963_preview.jpg"},{"name": "2008 Southport 28 Express", "price": "Call for price", "year": "2008", "manufacturer": "Southport", "model": "28 Express", "listingHref": "boat-listing-detail.html?ID=170", "photo": "media/images/boats/170/fm_photo_00001320_preview.jpg"},{"name": "2008 Southport 26 CC", "price": "Call for price", "year": "2008", "manufacturer": "Southport", "model": "26 CC", "listingHref": "boat-listing-detail.html?ID=224", "photo": "media/images/boats/224/fm_photo_00001804_preview.jpg"},{"name": "2008 Southport 28 CC Fischer Mar...", "price": "Call for special pricing", "year": "2008", "manufacturer": "Southport ", "model": "28 CC", "listingHref": "boat-listing-detail.html?ID=226", "photo": "media/images/boats/226/fm_photo_00002104_preview.jpg"}]};
var _doIt="1";
var timerID = 0;
var _currentIndex="";
var _listingCount;
var _listingHref2="";
timerID = setTimeout("initListing();", 500);
function goDetails(){
location="http://www.fischermarine.com/" + _listingHref2;
}
function Start() {
timerID = setTimeout("listingNext()", 5000);
}
function Stop() {
if(timerID) {
clearTimeout(timerID);
timerID = 0;
}
}
function initListing(){
if(myJSONObject){
_listingCount = myJSONObject.listing.length-1;
random_num = (Math.round((Math.random()*_listingCount)))
loadListing(random_num);
//alert(random_num);
Start();
}else{
// alert("-1");
}
}
function listingNext(){
clearTimeout(timerID);
_currentIndex++;
if(_currentIndex>_listingCount){
_currentIndex=0;
}
loadListing(_currentIndex);
timerID = setTimeout("listingNext()", 5000);
}
function listingPrev(){
clearTimeout(timerID);
_currentIndex--;
if(_currentIndex<0){
_currentIndex=_listingCount;
}
loadListing(_currentIndex);
timerID = setTimeout("listingNext()", 5000);
}
function loadListing(_listingIndex){
_currentIndex=_listingIndex
var _listingObj=myJSONObject.listing[_listingIndex];
if(_listingObj){
_listingHref2=_listingObj.listingHref;
document.getElementById("fm_name").innerHTML=_listingObj.name;
document.getElementById("photo1").src="http://www.fischermarine.com/" + _listingObj.photo;
document.getElementById("fm_manufacturer").innerHTML="Manufacturer: " + _listingObj.manufacturer + "
";
document.getElementById("fm_model").innerHTML="Model: " + _listingObj.model + "
";
document.getElementById("fm_year").innerHTML="Year: " + _listingObj.year + "
";
document.getElementById("fm_price").innerHTML="Price: " + _listingObj.price + "
";
}else{
timerID = setTimeout("initListing();", 500);
}
}