$(document).ready(function() {
  
  $('a[rel^=lightbox]').colorbox({maxWidth:'1024',maxHeight:'800'});

  if ($('#header-image .wrapper').children().length < 2) {


  } else {

    $('#header-image .wrapper').loopedSlider({
      container:      '.wrapper',  // Class or ID of main container
      slides:         '.gallery-item',     // Class or ID of slide container
      //pagination:     '.pagination', // Class or ID of pagination container
      containerClick: false,          // Click container for next slide
      autoStart:      5000,          // Set to positive number for auto start and interval time
      restart:        0,             // Set to positive number for restart and restart interval
      slidespeed:     500,           // Speed of slide animation
      fadespeed:      300,           // Speed of fade animation
      autoHeight:     false          // Set to positive number for auto height and animation speed
    });

  }


  $('#container-products').infinitescroll({
    loadingImg   : "/images/loading.gif",
    loadingText  : "načítavam ďalšie produkty..",  
 
    navSelector  : "div.paginator",            
                   // selector for the paged navigation (it will be hidden)
    nextSelector : "div.paginator a.next",    
                   // selector for the NEXT link (to page 2)
    itemSelector : "#container-products div.product",
                   // selector for all items you'll retrieve
    donetext : "v tejto kategórií už nie je viac produktov",
    errorCallback: function() { 
        // fade out the error message after 2 seconds
        $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');     
    }
  });
});
