/***** IMAGE SLIDESHOW ******/
var running = 0;

jQuery(document).ready(function(){
  window.setInterval(updateSlideShow, 10000);
});

function updateSlideShow() {
  var active = jQuery('div#img_switch_buttons a.active');
  var next = active.next().length ? active.next(): jQuery('div#img_switch_buttons a:first-child');

  var active_id = active.attr('class');
  
  var next_id = next.attr('class');
  if(active_id) 
    active_id = active_id.split(" ")[0];
  var tempo = 2600;
  
  if(running != 1)
  {
    jQuery('div#img_switch div.'+active_id).fadeOut(tempo, function(){});
    running = 1;
    jQuery('div#img_switch>img#'+active_id).fadeOut(tempo, function(){
      jQuery('div#img_switch_txt_container div').css("display", "none");
      jQuery('div#img_switch>img#'+next_id).fadeIn(tempo);
      active.removeClass('active');
      next.addClass('active');
      jQuery('div#img_switch>div#img_switch_txt_container>div.'+next_id).fadeIn(tempo, function(){ running=0;});
    });

  }
}

