/* Clears searchbox' default value at onfocus */

function clearDefault(el){
    if (el.defaultValue==el.value) {
        el.value = "";
    }
}

