$().ready( function() {
	abre();
//	analizing();
	popups();
	abas();
	newstickers();
} );

function abre() {
	$('#agenda .amais').click(function() {
		var href = $(this).attr('href');

		if($(this).attr('class') == 'amais') {
			op = 'show';
			$(href).show(1000);
			$(this).addClass('amenos');
			$(this).removeClass('amais');
		} else {
			op = 'hide';
			$(href).hide(1000);
			$(this).addClass('amais');
			$(this).removeClass('amenos');
		}

		return false;
	});
}

function analizing() {
	
	alert($('.paginas').outerWidth());
	
	var min = '580';
	var h = $("html").outerHeight();
	
	if(h<min) {
		$("#index").css("height", min+"px");
	} else {
		$("#index").css("height", h+"px");
	}
	
	return true;
}

function popups() {
	$('a.visible').bind('click', function() {
		$(this).addClass('hidden');
	} );
}

function abas() {
	$('.abas1').tabs();
	$('.abas2').tabs(2);
	$('.abas3').tabs( { fxSlide:true } );
	$('.abas4').tabs( { fxFade:true, fxSpeed:'fast' } );
	$('.abas5').tabs( { fxSlide:true, fxFade:true, fxSpeed:'normal' } );
	$('.abas6').tabs( { fxAutoHeight:true } );
	$('.abas7').tabs( { fxShow:{ height:'show', opacity:'show' }, fxSpeed:'normal' } );
}

function newstickers() {
	if(document.getElementById('apoio2'))
		$("#apoio").newsTicker(5000);
}

