How is the search module supposed to work?
Even on your demo, it only seems to work when the width of the page is large enough to expand the "Start Typing..." box.
jQuery('#gk-search').click(function() {
searchbox.trigger('focus');
});
// search
var searchbox = jQuery('#gk-search .inputbox');
if(searchbox.length) {
jQuery('#gk-search').click(function() {
searchbox.trigger('focus');
});
searchbox.focus(function() {
var input = jQuery('#gk-search');
input.addClass('search-active');
});
searchbox.blur(function() {
var input = jQuery('#gk-search');
input.removeClass('search-active');
});
}