window.onload = function() {
document.getElementById('searchInputBox').onfocus = function() { if (this.value == 'Search') this.value=''; };
document.getElementById('searchInputBox').onblur = function() { if (this.value == '') this.value = 'Search'; };
