$(function(){
    //Remove the default text when the user clicks in here
    $("input#truyiy-truyiy").focus(function(e) {
        var this_ = $(this);
        if(this_.val() == "Email") {
            this_.val("");
        }
    });
    //Put it back on blur if the searchbox was empty
    $("input#truyiy-truyiy").blur(function(e) {
        var this_ = $(this);
        if(this_.val() == "") {
            this_.val("Email");
        }
    });
    //Remove the default text when the user clicks in here
    $("input#name").focus(function(e) {
        var this_ = $(this);
        if(this_.val() == "Name") {
            this_.val("");
        }
    });
    //Put it back on blur if the searchbox was empty
    $("input#name").blur(function(e) {
        var this_ = $(this);
        if(this_.val() == "") {
            this_.val("Name");
        }
    });
});

