
var rtm = 6000;

function roda() {
	document.tm = setTimeout('roda()', rtm);
	proximo();
}

function proximo() {
	id = $('#banner_home ul li:visible + li');
	if(!id.html())
		id = $('#banner_home ul li:first');
	$('#banner_home ul li').hide();
	$(id).fadeIn();
}

function anterior() {
	id = $('#banner_home ul li:visible').prev('li');
	if(!id.html())
		id = $('#banner_home ul li:last');
	$('#banner_home ul li').hide();
	$(id).fadeIn();
}

$(function(){
	$('#banner_home ul li').hide();
	$('#banner_home ul li:first').show();
	document.tm = setTimeout('roda()', rtm);
	$('#bt_ban_next').click(function(){
		proximo();
	});
	$('#bt_ban_prev').click(function(){
		anterior();
	});
	$('#banner_home span').mouseover(function(){
		clearTimeout(document.tm);
	});
	$('#banner_home span').mouseout(function(){
		document.tm = setTimeout('roda()', rtm);
	});
	/*
	$('#banner_home span').click(function(){
		clearTimeout(document.tm);
		$('#banner_home ul li').hide();
		$('#banner_' + $(this).text()).fadeIn();
		document.tm = setTimeout('roda()', 6000);
	});
	*/
});
