$(document).ready(function() {
	$('.calendario_titulo').click(function() {
		if ($(this).hasClass('calendario_off'))
			$(this).removeClass('calendario_off');
		else
			$(this).addClass('calendario_off');
		$(this).next('.calendario_descricao').slideToggle();
	})
	
	$('select[name="ano"]').change(function() {
		window.location.href = root+'calendario/'+($(this).val());
	});
	
	$('.baixe_lk').click(function(e){
		e.preventDefault();
		var lk = $(this).attr('href');

		if(lk=='')
		{
			$('#resposta_form_calendario').html('Efetue seu login para baixar as sugestões.').fadeIn('slow').css('margin', '10px 0');
			$('html, body').animate({scrollTop: $('#resposta_form_calendario').offset().top}, 2000)
		}
		else
			window.open(lk,'_blank');
		//this.target='_blank'
	});
});
