jQuery(function($)
{


	$('div.video').hide();
	$('ul#videos li h3').click(function()
	{

		if( $( this ).next( 'div.video' ).css( 'display' ) === 'block' )
		{
			$( this ).next( 'div.video' ).slideUp('fast');
		}
		else
		{
			$('div.video').each( function() { $( this ).slideUp('fast'); });
			$( this ).next( 'div.video' ).slideDown('fast');
		}

		return false;

	});


	$('table.ano').hide();
	$('h3.ano').each(function()
	{
		var text = $(this).text();
		$(this).html('<a href="#" class="mostra" title="Exibir os programas de ' + text + '">' + text + '</a>');
	});

	$('a.mostra').click(function()
	{
		ano = $(this).text();
		if($('table#ano' + ano).css('display') != 'block')
		{
			$('table#ano' + ano).slideDown('fast');
			action = 'esconde';
		}
		else
		{
			$('table#ano' + ano).slideUp('fast');
			action = 'mostra';
		}

		$(this).attr('class', action);
		return false;
	});

});
