var total_banners = 4;
var banner_id = 1+(Math.floor(Math.random() * total_banners));
var intervalo_banner = 1000;

function troca_banner() 
{

		if (++banner_id > total_banners)  banner_id = 1;
		if (banner_id == 1)
		{
			document.getElementById("publicidade_01").style.visibility = 'visible';
			document.getElementById("publicidade_02").style.visibility = 'hidden';		
			document.getElementById("publicidade_03").style.visibility = 'hidden';			
			document.getElementById("publicidade_04").style.visibility = 'hidden';				
		}
		if (banner_id == 2)
		{
			document.getElementById("publicidade_01").style.visibility = 'hidden';
			document.getElementById("publicidade_02").style.visibility = 'visible';		
			document.getElementById("publicidade_03").style.visibility = 'hidden';		
			document.getElementById("publicidade_04").style.visibility = 'hidden';					
		}
		if (banner_id == 3)
		{
			document.getElementById("publicidade_01").style.visibility = 'hidden';
			document.getElementById("publicidade_02").style.visibility = 'hidden';		
			document.getElementById("publicidade_03").style.visibility = 'visible';	
			document.getElementById("publicidade_04").style.visibility = 'hidden';					
		}
		if (banner_id == 4)
		{
			document.getElementById("publicidade_01").style.visibility = 'hidden';
			document.getElementById("publicidade_02").style.visibility = 'hidden';		
			document.getElementById("publicidade_03").style.visibility = 'hidden';	
			document.getElementById("publicidade_04").style.visibility = 'visible';					
		}		
		
		intervalo_banner = 10000;

	window.setTimeout('troca_banner();',intervalo_banner);
}
