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('154874', 'USED 2008 CHEVROLET HHR 2LT', '', 'http://www.bestidahodeals.com/cimages/GM2672.jpg'); specials[1] = new Special('167117', 'USED 2008 CHEVROLET MALIBU LS', '', 'http://www.bestidahodeals.com/cimages/GM2766.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();