function destacado_over(idNota){
	
	$('new_titulo_'+new_idNota[actual_new]).style.display 	= 'none';
	$('nota_'+idNota).style.display = 'block';
	$('news_opacador').style.display = 'block';
	news_ready = false;
}
	
function destacado_out(idNota){
	
	$('new_titulo_'+new_idNota[actual_new]).style.display 	= 'block';
	$('nota_'+idNota).style.display = 'none';
	$('news_opacador').style.display = 'none';
	news_ready = true;
}
	
function destacado_change(){
	
	if(news_ready && $('new_titulo_'+new_idNota[actual_new]) ){
		$('new_titulo_'+new_idNota[actual_new]).style.display 	= 'none';
		$('new_imagendestacada_'+new_idNota[actual_new]).style.display 	= 'none';
		$('new_link_numero_'+new_idNota[actual_new]).className = '';
		
		if(actual_new == total_news-1) actual_new = 0; else actual_new++;
		
		$('new_titulo_'+new_idNota[actual_new]).style.display 	= 'block';
		$('new_imagendestacada_'+new_idNota[actual_new]).style.display 	= 'block';
		$('new_link_numero_'+new_idNota[actual_new]).className 	= 'current';
	}
}
	
function kill_new_interval(){
	
	var img = $('leading-news-slideshow-obj-control');
	arr = img.src.split("/");
	img_name = arr[arr.length-1];
	
	if(img_name == "pause.gif") {
		
		if(typeof(new_idInterval) != 'undefined') clearInterval(new_idInterval);
		img.src = "../_modulos/notas/_imgs/ionline/play.gif";
		
	}else{ 
		
		new_idInterval = setInterval("destacado_change()",5000);
		img.src = "../_modulos/notas/_imgs/ionline/pause.gif";
		
	}
}

function init_new_interval(){
	
	kill_new_interval()
	new_idInterval = setInterval("destacado_change()",5000);
	
}

var new_idInterval 	= 0;
var total_news 	= 0;
var actual_new 	= 0;
var new_idNota 	= new Array();
var news_ready = true;