function pageLoad()
{
    // The code behind sets this boolean in cases where we need to prompt for a zip code.
    if(('undefined' != typeof(zipPrompt)) && zipPrompt)
    {
        PromptForZip();
    }
}


//Functions to trigger underline hover effect on search results
function landingMouseOver(el)
{
    addCssClass($get(el), 'underline');
}

function landingMouseOut(el)
{
    removeCssClass($get(el), 'underline');
}

function PromptForZip()
{
    zipPromptVar.Open("", ZipPromptOnSearch, "", ZipPromptOnCancel);
}

function ZipPromptOnSearch(sZip)
{
    navigateTo(window.location.href + "_zip_" + sZip);
}

function ZipPromptOnCancel()
{
    navigateTo(homepage);
}