  $(document).ready(function () {
  
    $('.slider').cycle({
		speed:    1000,
		timeout:  7000,
		fx: 'fade',

	});
	
	 $('.bierzuilBox').cycle({
		speed:    1000,
		timeout:  3000,
		fx: 'fade',

	});
	
	
var height = $('.galleryBox ul').height();
$('.galleryBox ul li').fadeTo(0,0);
var i = 0;

$('.galleryBox').height(height);

$('.galleryBox ul li').each(function(i) {
	i++;
	
	$(this).delay(i*100).fadeTo(300,1);
	//this.style.removeAttribute('filter');
});

$('.galleryBox ul li').hover(function () {
	$(this).find('p').stop().animate({'margin-top': '5px'}, 100);
},

function () {
	$(this).find('p').stop().animate({'margin-top': '0px'}, 200);
}
);



 
 var html = $('.recommendBox ul li').first().html();



  });
  var backup = "";
   setInterval("nextReccomend();", 10000);
 function nextReccomend() {
	
		var backup = $('.recommendBox ul li').first().html();
		
		$('.recommendBox ul li').first().animate({'margin-left': '30px', 'height': '0px', 'opacity' : 0}, 500, function() {
			$(this).remove();
		});
		
		
		$('.recommendBox ul').append('<li>' + backup + '</li>');
	
	
 }
 



