/*
// Ref documents 
http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=600
http://code.google.com/apis/ajaxsearch/documentation/reference.html#_restUrlBase
http://code.google.com/apis/ajax/playground/?exp=search#raw_search
*/

$(document).ready(function() 
{
    // preform the search
    $('img#searchSiteButton').click(function() 
    {
        var searchSiteTerm = $('input#searchSiteTerm').val();

        if (searchSiteTerm != "") 
        {
            document.forms["frmSearchSite"].submit();
        }

        return false;
    });
});
