jQuery(document).ready(function() { 
	if(document.location.protocol != "https:"){
		jQuery("#searchForm").live("submit", function(){
		if(jQuery("input[name='searchKeywords']").val() == "") return false;
		if(jQuery("input[name='group1']:first:checked").size() == 1){
			window.location = "http://www.crackerbarrel.com/search-results/?searchStr=" + escape(jQuery("[name='searchKeywords']").val());
			return false;
    }

	});}
});
