function selNoticiaBox(id){
	
	
	
	window.clearTimeout(timeOutId);
	
	$('#linha1').removeClass('noticia_box_sel');
	$('#linha2').removeClass('noticia_box_sel');
	$('#linha3').removeClass('noticia_box_sel');
	$('#linha4').removeClass('noticia_box_sel');
	
	$('#noticiaBox1').css('display', 'none');
	$('#noticiaBox2').css('display', 'none');
	$('#noticiaBox3').css('display', 'none');
	$('#noticiaBox4').css('display', 'none');

	$('#linha'+id).addClass('noticia_box_sel');
	$('#noticiaBox'+id).show();
	
	
	numeroDoBoxHomeSendoExibido++
	if (numeroDoBoxHomeSendoExibido > 4){
		numeroDoBoxHomeSendoExibido = 1;
	}
	
	
	
	
  timeOutId = setTimeout(function(){
			selNoticiaBox(numeroDoBoxHomeSendoExibido);
		},7000
	); 
	
	return false;

}


function doNothing(){
	return false;
}
