addLoadEvent(searchInput);

function searchInput() {
    var innerText = "Enter search terms";

    if (!document.getElementById("search-term")) return false;
    
    document.getElementById("search-term").onfocus = function() {
        if (this.value == innerText) {
            this.value = "";
        }
    }
    document.getElementById("search-term").onblur = function() {
        if (this.value == "") {
            this.value = innerText;
        }
    }
} 