/* Author: 

*/







$(function(){
    $("#searchTerm").autocomplete({
    source: "/SearchJSON",
    minLength: 2,
    select: function (event, ui) {
        // Redirect to page
      window.location.href = ui.item.id;
    }
  });
});
















