$(document).ready(function() {
	/* Search Form */
	$('#form-search fieldset label span').addClass('hidden');
	$('#s').val('Busca');
	$('#s').focus(function() {
		if ($(this).val() == 'Busca') {
			$(this).val('');
		}
	});
	$('#s').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Busca');
		}
	});
	$('#searchsubmit').addClass('hidden');

	/* About */
	animatedcollapse.addDiv('about_animated', 'fade=1,height=250px');
	animatedcollapse.init();

	/* Add This */
	$("a.add-this")
		.mouseover(function() {
			return addthis_open(this, '', $(this).attr('href'), $(this).attr('title'));
		})
		.mouseout(function() {
			addthis_close()
		})
		.click(function() {
			return addthis_sendto();
		});
});
animatedcollapse.ontoggle=function($, divobj, state) {
	$('div#footer').toggleClass('footer');
	$('div#footer').toggleClass('footer_full');
}
