/**
 * Eventos do site
 *
 * @author	Thiago Paes <thiago@thiagopaes.com.br>
 * @package	NovoEstiloDeVida
 * @copyright	Novo Estilo de Vida
 */
Event.observe(window, 'load', function()
{
    if ($('playerVideo'))
    {
	$('playerVideo').update('Aguarde, carregando vídeo...');
	
	var objPlayer= new SwfObject('http://www.youtube.com/v/SLl_FHNum8Q&hl=pt-br&fs=1&', 'swfPlayerVideo', '375', '304', 8);
	    objPlayer.addParam("bgcolor", "#d9dbcb");
	    objPlayer.addParam("quality", "high");
	    objPlayer.addParam("showMenu", "false");
	    objPlayer.addParam("allowScriptAccess", "sameDomain");
	    objPlayer.addParam("allowFullScreen", "true");
	    objPlayer.addParam("wmode", "transparent");
	    objPlayer.addParam("type", "application/x-shockwave-flash");
	    objPlayer.write("playerVideo");
    }

    setTimeout(function() {
        if ( $('retornos') )
        {
            $('retornos').hide();
        }
    }, 2000);

    var i = 1;
    
    setInterval(function() {
        //Effect.Fade($('banner'), { duration:1, from:1.0, to:0.0 });

        $('banner').style.backgroundImage = 'url(/images/banner/' + i + '.jpg)';

        Effect.Appear($('banner'), {
            duration:1,
            from:0.0,
            to:1.0
        });

        i++;

        if (i == 5) {
            i = 0;
        }
    }, 10000);
})
