$(document).ready(function() {

	$('.aba').click(function() {

		$('#box-mais').hide();
		$('#box-ultimas').hide();
		$('#box-fotos').hide();
		$('#box-videos').hide();

		$('#box-'+$(this).attr('rel')).fadeIn('fast');

		$('.aba').css('background-position','0 -44px');
		$(this).css('background-position','0 0');

	});

	$('#bt-mais').click();

});
