$(document).ready(function(){

/* 
/////////////////////////////
    Input Hover Function
/////////////////////////////
*/

function clear ()
{
    // Grab the search box
    var sr = document.getElementById("l290697-290697");
    // Attach Focus event handler
    sr.onfocus = function ()
    {
        sr.value = "";
        sr.style.backgroundColor = "#fff";
    }
    // Attach Hover event handler
    sr.onmouseover = function ()
    {
        sr.style.backgroundColor = "#fff";
    }
    // Attach Mouse Out event handler
    sr.onmouseout = function ()
    {
        sr.style.backgroundColor = "#fff";
    }
    // Attach Blur event handler
    sr.onblur = function ()
    {
        sr.style.backgroundColor = "#fff";
        if(sr.value == "")
        {
            sr.value = sr.defaultValue;
        }
    }
}
// Initiate the function
window.onload = clear;

/* 
/////////////////////////////
    Input Hover Function
/////////////////////////////
*/

  });