﻿$(document).ready(function() {
    $(function() {

        $("#tbxSearch").jSuggest({
            url: "/Search/Interfaces/Load/Default.aspx",
            type: "POST",
            data: "searchQuery",
            autoChange: true
        });
    });
});


function searchEnter(e) {
    if (e.keyCode == 13 && $("#tbxSearch").val() != false)
    {
        window.location.href = "/Search/Interfaces/Redirect/?searchQuery=" + $("#tbxSearch").val();
    }
}

function searchLookup()
{
    if ($("#tbxSearch").val() != false)
    {
        window.location.href = "/Search/Interfaces/Redirect/?searchQuery=" + $("#tbxSearch").val();    
    }
}
