$(document).ready(function() {
      
    $('.has-slideshow').append('<div id="slider-content"></div>');
    
    $('.has-slideshow #slider-content').html($('#content').html());
    
    $('.has-slideshow #content').html('');
    
    currentSlide = 0;
    
    var nextSlide = function () {
    
      var arrPhotos = ["index-1.jpg", "index-2.jpg", "index-3.jpg", "index-4.jpg", "index-5.jpg", "index-6.jpg", "index-7.jpg", "index-8.jpg"];
      
      $('.slideshow').fadeOut(300, function() {
      
        if (currentSlide == (arrPhotos.length - 1)) {
          var nextSlide = 0;
          currentSlide = 0;
        } else {
          var nextSlide = currentSlide + 1;
          currentSlide++;
        }
            
        $('.slideshow').css('background', 'url(/front/indian-cigars/images/' + arrPhotos[nextSlide] + ') no-repeat');
        
        $('.slideshow').fadeIn(300);
      });
      
    }
    
    setInterval(nextSlide, 4000);
    
});

$(window).load(function() {
    $('#nivo-slider').nivoSlider({
      effect:"random",
      animSpeed:500,
      pauseTime:3000,
      startSlide:0,
      directionNav:true,
      controlNav:true,
      controlNavThumbs:false,
      keyboardNav:true,
    });
    
    $('#nivo-slider').data('nivoslider').start();
});

