$(document).ready(function(){$("#SuggestionBox").jqm({modal:true,trigger:"a#SuggestButton",toTop:true,overlay:75,overlayClass:"SuggestionOverlay",onShow:function(A){A.w.show();$("#SuggestButton").hide()},onHide:function(A){A.w.hide();A.o.remove();$("#SuggestButton").show()}});$("#SuggestionBox").jqmAddClose($(".CancelButton"));$("#SuggestionBox form, form.send-suggestions-form").submit(function(){var A=$(this);var B=A.find("textarea");if($.trim(B.val())!=""){$.ajax({url:A.attr("action"),type:A.attr("method"),data:A.serialize()+"&jspost=valid",cache:false,error:function(){alert("error")},success:function(C){alert($("#SuggestionReply").text());B.val("");$("#SuggestionBox").jqmHide();if(typeof(g_actionAfterSubmitSuggestions)!="undefined"){g_actionAfterSubmitSuggestions()}}})}return false})});