// vídeo personalizado da home
var params = { allowScriptAccess: "always" };
var atts = { id: "myytplayer" };
swfobject.embedSWF("http://www.youtube.com/apiplayer?enablejsapi=1&version=3", "player", "270", "152", "8", null, null, params, atts);

function onYouTubePlayerReady(playerId) {
	ytplayer = document.getElementById("myytplayer");
	ytplayer.cueVideoById('Bz112o71euc');
	ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
	
	setInterval(updatePlayerInfo, 250);
}

jQuery('document').ready(function($)
{
	$("#scroller").scrollable({circular: true, speed: 1300}).autoscroll({autoplay: true, interval: 7000});
	
	// Bloco Informações
	$('#home #informacoes h2 a.inactive').live('click', function()
	{
		$('#home #informacoes h2 a').removeClass('active').addClass('inactive');
		$('#informacoes .items').children().hide();
		
		$(this).removeClass('inactive').addClass('active');
		
		$('#informacoes .'+$(this).parent().attr('class')).show();
	});
});
