var ofNewsTimer2010 = null;
var ofNewsAtual2010 = 1;

function ofNews2010() {
	ofNewsAtual2010 = 1;
	ofNewsTimer2010 = window.setTimeout("ofNewsMove2010(2)",7000);
}

function ofNewsMove2010(index) {

	var atual = ofNewsAtual2010;
	var proximo = index;
	if (proximo > 4)
		proximo = 1;
		
	ofNewsAtual2010 = proximo;

	$('#expo_'+atual).fadeOut('500',function() {
		$('#expo_'+proximo).fadeIn('1000'); 
		});

	$('#nav_'+atual+'_on').hide();
	$('#nav_'+atual+'_off').show();

	$('#nav_'+proximo+'_off').hide();
	$('#nav_'+proximo+'_on').show();
		
	window.clearInterval(ofNewsTimer2010);
	var prox = ofNewsAtual2010+1;
	ofNewsTimer2010 = window.setTimeout("ofNewsMove2010("+prox+")",7000);
}




