$(function(){
	$('#searchform #searchsubmit').attr('title','Pesquisar');
	
	/*
	 * Places the submit button after reCaptcha
	 */
	var button = $('#respond .form-submit');
	if (button.length > 0) {
		button.remove(); //removes from its current place
		$('#commentform').append(button); //places the button after recaptcha
	}
	
	/* adiciona atributo target blank aos links de rss na lateral */
	$('.widget-area .rsswidget').attr('target','_blank');
	
	/* esconde widget do perfil */
	$('.page-template-tatiane-pires-php #text-21').hide();
	
	/* 2012-01-19 08-31 */
});

