$(document).ready(function() { 
	$(window).resize(function(){
		alignVertically();		
	});
	
	alignVertically();
	
	// Slide pentru Quotes
	$(".scrollable").scrollable({
		size: 1,
		clickable: false,
		vertical: true, 
		loop: true
	});	
/*	$('.prev-item-q').click(function(){
		var api = $(".scrollable:first").scrollable();
		if (api.getIndex()<1) api.prevPage();
		else api.move(-1);
		change_navigator();
	});	*/
	$('.nxJoke').click(function(){
		var api = $(".scrollable:first").scrollable();
		api.next(1);
		var jokeHeight = $("#joke>.items>div:eq(" + api.getIndex() + ")>p").innerHeight();
		jokeHeight = (jokeHeight <165)?165:jokeHeight;
		$("#joke").css("height", jokeHeight+"px");
	});

	
	
});

function alignVertically()
{
	var windowHeight = $(window).height();
	var containerHeight = $('#container').height();
	var top = Math.round(windowHeight/2-containerHeight/2);
	top = (top<10)?10:top;
	$('#container').animate({top : top+'px'}, 'slow');
}