$(document).ready(function(){
	
	$('div.lista_filmow div.film').hide();
	$('div.lista_filmow div.film:first').show();
	
	$("div.lista_filmow span.prev").click(function(){
		auto = false;
		prevMovie(false);
	});
	$("div.lista_filmow span.next").click(function(){
		auto = false;
		nextMovie(false);
	});
	
	setTimeout('nextMovie(true);', 5000);
	
});
var auto = true;

function nextMovie(automated)
	{
	if (automated == true && auto == false)
		return;
	var current = $('div.lista_filmow div.film:visible');
	var next = current.next('div.film').length ? current.next('div.film') : current.parent().children('div.film:first');
	if (current.next('div.film').length)
		next.show(500, function() {current.hide();});
	else
		{
		next.show();
		current.hide(500);
		}
	if (auto == true)
		setTimeout("nextMovie(true);", 5000);
	}
function prevMovie(automated)
	{
	var current = $('div.lista_filmow div.film:visible');
	var next = current.prev('div.film').length ? current.prev('div.film') : current.parent().children('div.film:last');
	if (current.prev('div.film').length)
		{
		next.show();
		current.hide(500);
		}
	else
		next.show(500, function() {current.hide();});
	if (auto == true)
		setTimeout("prevMovie(true);", 5000);
	}

