/*!
 * jQuery custom scripts file
 * 
 * Dariusz Pobożniak
 * http://pobozniak.pl
 */

$(function () {
	$('.lightbox').fancybox();
	
	$("#facebook-slider").hover(
		function(){
		$("#facebook-slider").stop(true, false).animate({left:"0"},"slow");
       },
		function(){
       $("#facebook-slider").stop(true, false).animate({left:"-348"},"slow");
		}
	);
});
