<!--

//DESTAQUES

if (dSrc.length > 1)
{
	new Asset.images(dSrc,{onComplete:function(){Destaques.delay(4000); Destaques.periodical(10000);} } );
	var dInd = 0;
}

function Destaques()
{
	$('destaque').effect('opacity',{duration:1500,wait:false, onComplete:ChgSrc}).start(0.1);
	function ChgSrc()
	{
        dInd++;
  		if (dInd == dSrc.length)
		{
			dInd = 0;
		}
		$('dlink').setProperty('href',dLink[dInd]);
		$('dimg').setProperty('src',dSrc[dInd]);
		$('dtitulo').setHTML('');
		$('dtitulo').appendText(dTit[dInd]);
        $('destaque').effect('opacity',{duration:1500}).start(1);
	}
}


-->
