// vídeo personalizado da home
var params = { allowScriptAccess: "always" };
var atts = { id: "myytplayer" };

jQuery('document').ready(function($)
{
	$("#scroller").scrollable({circular: true, speed: 1300}).autoscroll({autoplay: true, interval: 4000});
	
	// 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();
	});
});
