$(document).ready(function(){

	// removo imagem do texto e listagem
	$('.list-conteudo-index img').remove();
	
    // Link de Leia Mais
	$('.more-link').text('Leia mais');
	
	// Efeito repor texto Input
    $('#txt-busca-baixo, #txt-busca').focus(function(event){
        valorAntigo = $(this).attr('value');
        
        if (valorAntigo == 'Fazer busca em todo o site') {
            $(this).attr('value', '');
        }
        
    }).blur(function(event){
        if ($(this).attr('value') == '') {
            $(this).attr('value', valorAntigo);
        }
    });
    
    // Funcao de Scroll Animado
    $('.posted-info-deixe.reset-single').click(function(){
        $('#url').attr('value', '');
        $('#email').attr('value', '');
        $('html, body').animate({
            scrollTop: $("#respond").offset().top
        }, 1800);
		$('#comment').attr('value', '').focus();
        $('#author').attr('value', '').focus();
        return false;
        event.preventDefault(event);
    });
	
});

