var noticias_destaque__scroll_id;
var noticias_destaque__scroll_obj;

function set_noticias_destaque__scroll_obj( id )
{
		switch ( id )
		{
			case 1 : noticias_destaque__scroll_obj = sp_slide__noticias_destaque; break;
			case 2 : noticias_destaque__scroll_obj = sp2; break;
			case 3 : noticias_destaque__scroll_obj = sp3; break;
		}
}

function noticias_destaque__do_TD__Scroll_Direita()
{
		noticias_destaque__scroll_obj.showNextPanel();		
		document.getElementById( 'noticias_destaque__contador_pagina' ).innerHTML = '5 - 8 de 8';
}

function noticias_destaque__TD__Scroll_Direita( id, valor )
{
	if ( valor == 1 )
	{
		set_noticias_destaque__scroll_obj( id );
		noticias_destaque__scroll_obj.showNextPanel();
		noticias_destaque__do_TD__Scroll_Direita();
//		noticias_destaque__scroll_id = setInterval( noticias_destaque__do_TD__Scroll_Direita, 500 );
	}
//	else clearInterval( noticias_destaque__scroll_id );
}

function noticias_destaque__do_TD__Scroll_Esquerda()	
{
		noticias_destaque__scroll_obj.showPreviousPanel();		
		document.getElementById( 'noticias_destaque__contador_pagina' ).innerHTML = '1 - 4 de 8';
}

function noticias_destaque__TD__Scroll_Esquerda( id, valor )
{
	if ( valor == 1 )
	{
		set_noticias_destaque__scroll_obj( id );
		noticias_destaque__scroll_obj.showPreviousPanel();
		noticias_destaque__do_TD__Scroll_Esquerda();
//		noticias_destaque__scroll_id = setInterval( noticias_destaque__do_TD__Scroll_Esquerda, 500 );
	}
//	else clearInterval( noticias_destaque__scroll_id );
}



// controle do efeito de seta em cima dos anúncios

function noticias_destaque__show_seta( index )
{
	document.getElementById( 'noticia_destaque__not_1' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_2' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_3' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_4' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_' + index ).style.background = "url(../imagens/noticias_destaque__seta.jpg)";
}

function noticias_destaque__hide_seta()
{
	document.getElementById( 'noticia_destaque__not_1' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_2' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_3' ).style.background = "#FFF";
	document.getElementById( 'noticia_destaque__not_4' ).style.background = "#FFF";	
}




// rotina para seleção de uma notícia

var v_dados_link = '';

function getDados_Noticia_Destaque( req )
{
	var dados = String( req.xhRequest.responseText ).split( '!@#' );
	var titulo = dados[ 1 ];
	var assunto = dados[ 3 ];
//	$not_des_titulo = ( strlen( $not_des_titulo_destaque.' '.$not_des_titulo ) > 70 ) ? ( substr( $not_des_titulo, 0, ( 70 - strlen( $not_des_titulo_destaque ) ) ).' (...)' ) : $not_des_titulo;
	
	document.getElementById( 'noticia_destaque__sel_titulo' ).innerHTML = assunto;
	document.getElementById( 'noticia_destaque__sel_imagem' ).innerHTML = '<a href="' + v_dados_link + '"><img src="imagens_upload/' + dados[ 2 ] + '" width="404" height="329" /></a>';
}

function noticias_destaque__sel_noticia( not_id, dados_link )
{
	v_dados_link = dados_link;
	document.getElementById( 'noticia_destaque__sel_titulo' ).innerHTML = 'Carregando ...';
//	alert( "getDados/noticia.php?notid=" + not_id );
//open( "http://www.correiodopapagaio.com.br/getDados/noticia.php?notid=" + not_id );
	var req = Spry.Utils.loadURL( "GET", "http://www.correiodopapagaio.com.br/getDados/noticia.php?notid=" + not_id, true, getDados_Noticia_Destaque );
}












