$(function(){

    $('#key-busca').focus(function(event){
        valorAntigo = $(this).attr('value');
        
        if (valorAntigo == 'Faça a busca por vídeos pornôs') {
            $(this).attr('value', '');
        }
        
    }).blur(function(event){
        if ($(this).attr('value') == '') {
            $(this).attr('value', valorAntigo);
        }
    });
	
});
$(function(){

    $('#key-busca').focus(function(event){
        valorAntigo = $(this).attr('value');
        
        if (valorAntigo == 'Faça a busca por vídeos pornôs') {
            $(this).attr('value', '');
        }
        
    }).blur(function(event){
        if ($(this).attr('value') == '') {
            $(this).attr('value', valorAntigo);
        }
    });
	
});
