$(document).ready(function(){
	
	
	$('#slidebox').hover(function(){
		$(this).stop(true).animate({right:0});
	},function(){
		$(this).stop(true).animate({right:-304});
	}); 
	
	$('.video,.show_pics').fadeOut(10);
	
	(function(d, s, id) {
	  var js, fjs = d.getElementsByTagName(s)[0];
	  if (d.getElementById(id)) {return;}
	  js = d.createElement(s); js.id = id;
	  js.src = "//connect.facebook.net/pl_PL/all.js#xfbml=1";
	  fjs.parentNode.insertBefore(js, fjs);
	}(document, 'script', 'facebook-jssdk'));
	
	
	 
});





$(window).load(function(){


	
	//$('.show_pics img').slice(1).css('opacity',0);
	$('.video,.show_pics').fadeIn(300)
	setInterval(function(){
	
		$('.video,.show_pics').each(function(ind){
			
			var 
				ls =$(this).find('img'),
				i =	ls.parent().data('index') || 0;
				i=++i%ls.length;
				
				ls.fadeOut().eq(i).stop(true).fadeIn()
				ls.parent().data('index',i);
		
		})
		
	},4000);
	

})
