var Slider = {
  id : '',
  time : 6000,

  start : function() {
    Slider.id = setInterval(function(){
      jQuery('.carousel-right').mousedown().mouseup();
    }, Slider.time);
  },

  stop : function() {
    clearInterval(Slider.id);
  }
}

jQuery(document).ready(function() {
  Slider.start();

  jQuery('#items-container').mouseout(function() {
    Slider.start();
  });

  jQuery('#items-container').mouseover(function() {
    Slider.stop();
  });


  jQuery('#items-container2').mouseout(function() {
    Slider.start();
  });

  jQuery('#items-container2').mouseover(function() {
    Slider.stop();
  });


});
