function Special(inventory_id, title, price, img)
{
this.Inventory_ID = inventory_id;
this.Title = title;
this.Price = price;
this.Image = img;
this.Link = 'vehicle_details.php?Inventory_ID='+inventory_id;
}
var specials = new Array();
specials[0] = new Special('180385', 'NEW 2010 Honda Accord LX', '', 'http://php.eesc.com/htdocs_globalimages/honda/2010big/CP2F3AEW_SI.jpg');
var image_x = 0;
var max_x = specials.length;
function nextImage()
{
document.getElementById('blowout_img').innerHTML = '
';
document.getElementById('blowout_txt').innerHTML = '' + specials[image_x].Title + '
' + specials[image_x].Price + '';
if (image_x < (max_x-1)) { image_x++; }
else { image_x = 0; }
setTimeout('nextImage()', 5000);
}
if (max_x > 0)
nextImage();