$(function() {
	var atual = 0;
	var tempo = 7000;
	var lista = $("#banner_dinamico li");
	var botoes = $("#banner_dinamico_botoes input");
	var tamanho = $(lista).length - 1; 
	
	if (tamanho > 0)
		$(botoes).eq(tamanho).show().prevAll(botoes).show();
	
	$(lista).eq(atual).fadeIn();
	$(botoes).eq(atual).css({"background-position" : "bottom"});
	
	var chamar = window.setTimeout(mudar, tempo);
	
	function mudar ()
	{
		if (tamanho != 0)
		{
			$(lista).eq(atual).hide();
			$(botoes).eq(atual).css({"background-position" : "top"});
			if (atual < tamanho)
				atual += 1;
			else 
				atual = 0;
			$(lista).eq(atual).fadeIn();
			$(botoes).eq(atual).css({"background-position" : "bottom"});
			chamar = window.setTimeout(mudar, tempo);
		}
	}
	
	$(botoes).click(function() {
		if (atual != $(botoes).index(this))
		{
			clearTimeout(chamar);
			$(lista).eq(atual).hide();
			$(botoes).eq(atual).css({"background-position" : "top"});
			$(this).css({"background-position" : "bottom"});
			atual = $(botoes).index(this);
			$(lista).eq(atual).fadeIn();
			chamar = window.setTimeout(mudar, tempo);
		}
	});
	
	$(lista).hover(
		function()
		{
			clearTimeout(chamar);
			$("#banner_pausado_texto").fadeIn();
		},
		function()
		{
			chamar = window.setTimeout(mudar, 5000);
			$("#banner_pausado_texto").fadeOut();
		}
	);
	
});
