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(); 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();