function changeCases(idx) {
	$('#cases img.principal').attr('src', 'imagens/cases/'+arCases[idx][1]);
	$('#cases h3').html(arCases[idx][2]);
	$('#cases p').html(arCases[idx][3]);
	$('#cases a').attr('href', '?id='+arCases[idx][0]);
	iTimeout = arCases[0][4]*1000;
    idx = (idx < arCases.length-1)?idx+1:0;
    window.setTimeout('changeCases('+idx+')', iTimeout);	//Milisegundos	
}

function changeNoticias(idx) {
	$('#noticias img.principal').attr('src', 'imagens/noticias/'+arNoticias[idx][1]);
	$('#noticias h3').html(arNoticias[idx][2]);
	$('#noticias p').html(arNoticias[idx][3]);
	$('#noticias a').attr('href', '?id='+arNoticias[idx][0]);
	iTimeout = arNoticias[0][4]*1000;
    idx = (idx < arNoticias.length-1)?idx+1:0;
    window.setTimeout('changeNoticias('+idx+')', iTimeout);	//Milisegundos	
}


$(this).ready(function(){
	window.setTimeout('changeCases(1)', arCases[0][4]*1000);		//Milisegundos
	window.setTimeout('changeNoticias(1)', arNoticias[0][4]*1000);	//Milisegundos
	
	$('#enquetes.box form input.votar').click(function() {
		var	iOpcao = $('#enquetes.box form input[type=radio]:checked').val();
		if(iOpcao != null) { 		
			$.post("enquete.php", { js: true, opcao: iOpcao},
				  function(data){
				    alert(data);
				  });			
		}
		return false;
	});
});