jQuery( function($) {

  var site_options = {
    'main_color'      : '#333333',
    'secondary_color' : '#d50022'      
  }

  // Slider options
  $("#product_intro_preview").slides({
    slideSpeed: 1000,
    next: 's_button_next',
    prev: 's_button_prev',
    play: 8000,
    generatePagination: false,
    animationStart: function() {
      $("#product_intro_info > div:visible").fadeOut('slow');
    },
    animationComplete: function(current) {
      number = $("#product_intro_preview div.slideItem").index($("#product_intro_preview div.slideItem:visible"));
      $("#product_intro_info > div").eq(number).fadeIn();
    }
  });

 

});
