(function() {jQuery(document).ready(function(){

    jQuery("#s").bind("click", function(){
        if(jQuery("#s").attr("value") == "Buscar..."){
            jQuery("#s").attr("value", "");
        }
    });
    
    jQuery("#s").bind("blur", function(){
        if(jQuery("#s").attr("value") == ''){
            jQuery("#s").attr("value", "Buscar...");    
        };
    });

    var email = (window.location.href.split("?").length > 1) ? (window.location.href.split("?")[1]).split("=")[1] : '';
    if(email != ''){
        jQuery("input[name=ne]").attr("value", unescape(email));
    }
    
});
})();