/***** IMAGE SLIDESHOW CARS ******/
jQuery(document).ready(function(){
  window.setInterval(updateCarSlideShow, 7000);
});

function updateCarSlideShow() {
  var active_button = jQuery('div#carimage_slide div#c_img_buttons a.active');
  var next_button = active_button.next().length ? active_button.next(): jQuery('div#carimage_slide div#c_img_buttons a:first-child');


  var active_img = jQuery('div#carimage_slide div#car_images div.active');
  var next_img = active_img.next().length ? active_img.next(): jQuery('div#carimage_slide div#car_images>div:first-child');
//alert(next_img.attr("id"));
  active_button.removeClass('active');
  active_img.removeClass('active');

  jQuery(active_img).css("display", "none");
  jQuery(next_img).css("display", "block");

  next_button.addClass('active');
  next_img.addClass('active');
}

