$(function() {

	var stopDown 	= false;
	var stopUp 		= false;
	
	$('#scrollUp').bind('mousedown', function(e){
		var intv = setInterval(function(){
			if(stopUp) {
				clearInterval(intv);
				stopUp = false;
				return;
			}
			$('.contentScroller').scrollTo('-=20',{axis:'y'});
		},50);
				
		return false;
	}).bind('mouseup', function(){
		stopUp = true;		
	}).bind('click', function(){
		return false;
	});
	
	$('#scrollDown').bind('mousedown', function(e){
		var intv = setInterval(function(){
			if(stopDown) {
				clearInterval(intv);
				stopDown = false;
				return;
			}
			$('.contentScroller').scrollTo('+=20',{axis:'y',offset:-100});
		},50);
				
		return false;
	}).bind('mouseup', function(){
		stopDown = true;		
	}).bind('click', function(){
		return false;
	});
	
	$('#carouselContainer').carousel('#fcLeft', '#fcRight');
	
	$('#galleryPhotos a').lightBox({fixedNavigation:true,txtImage:'Zdjęcie',txtOf:'z'});
	$('#shopItems a.itemPhoto').lightBox({fixedNavigation:true,txtImage:'Zdjęcie',txtOf:'z'});
});
