$(window).load(function() {
  if ($('#products-rotator').length > 0) {
    $("#products-rotator").scrollContent({ 
        btnNext: "div.next",  
        speed: 500, 
        visible: 6 
    });
  }
});




$(document).ready(function () {
  $(".fancybox").fancybox({
  	'titleShow'		: false,
  	'transitionIn'	: 'elastic',
  	'transitionOut'	: 'elastic',
	'centerOnScroll': true
  });

  $(".fancybox[rel=group]").fancybox({
  	'titleShow'		: false,
  	'transitionIn'	: 'elastic',
  	'transitionOut'	: 'elastic',
	'padding'       : 7,
	'centerOnScroll'	: true
  });

	$(".fancybox-iframe").fancybox({
		'width'				: 820,
		'height'			: 500,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'padding'			: 17,
		'centerOnScroll'	: true
	});

	$(".video-player").fancybox({
	  'width'         : 500,
		'height'			: 300,
	  	'scrolling'     : 'no',
	  	'padding'       : 7,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'centerOnScroll': true
	});

  $('a.hover-barva').hover(function () {    
    if ($('#products-all').hasClass('hide')) {
      $('#products-all').removeClass('hide');
      $('#products-all').show();
      $('#pabs').css('backgroundPosition', '0px 0px');
    }else{
      $('#products-all').addClass('hide');
      $('#products-all').fadeOut('fast');
      $('#pabs').css('backgroundPosition', '-480px 0px');
    }    
  });

  $('a.hover-pece').hover(function () {    
    if ($('#products-all').hasClass('hide')) {
      $('#products-all').removeClass('hide');
      $('#products-all').show();
      $('#pabs').css('backgroundPosition', '0px 0px');
    }else{
      $('#products-all').addClass('hide');
      $('#products-all').fadeOut('fast');
      $('#pabs').css('backgroundPosition', '-960px 0px');
    }    
  });;

  $('a.hover-styling').hover(function () {    
    if ($('#products-all').hasClass('hide')) {
      $('#products-all').removeClass('hide');
      $('#products-all').show();
      $('#pabs').css('backgroundPosition', '0px 0px');
    }else{
      $('#products-all').addClass('hide');
      $('#products-all').fadeOut('fast');
      $('#pabs').css('backgroundPosition', '-1440px 0px');
    }    
  });

}); 
