﻿/* This fixes the search plugin error where it doesn't work after clicking in the counsillor area */
  $(document).ready(function() {
    $("#Template_searchBox_quickSearch").keypress(function(event) {
        if(event.keyCode == '13')
        {
            __doPostBack('Template$searchBox','goSearch');
        } 
    });
});
