$(function() {
	
	$(".foto .info").hide();
	
	$("#gallery a.photo").colorbox
	({
		transition:'elastic',
		title: function(){
			var imgalt = $(this).children('img').attr('alt');
			return imgalt;
		},
		current: "Zdjęcie {current} z {total}"
	});
	
	$("#scroller").scrollable({circular: true}).navigator().autoscroll({
		interval: 7000,
		autopause: true
	});
	
	$("#gal_scroller").scrollable({circular: true}).autoscroll({
		interval: 8000,
		autopause: true
	});

	$('.foto').hover(function() {
		$(this).find('.info').stop(true, true).slideDown();
	}, function() {
		$(this).find('.info').stop(true, true).slideUp();
	});
	
	/*$('#home_sponsors').cycle({ 
		fx:     'scrollUp', 
		timeout: 8000, 
		delay:  -3000 
	});*/
	
	//grayscale($('body'));
});

