if (!sbweb.event.ready) sbweb.event.ready = function() {
	
	$(document).ready(function() {
		
		sbweb.util.log.debug("JQuery Ready Event Begin");
		
		// Load the parameter map
		sbweb.data.loadBaseParameters();
		sbweb.component.entranceSurvey.loadSurveyParam();
		
		sbweb.ui.init();
		sbweb.ui.jQueryDialog();
		sbweb.ui.commerceTab();
		
		// Bind common section expander event handlers
		sbweb.ui.bindSectionExpander("body");
		sbweb.ui.bindFootnoteExpander("body");
		
		// product tab
		try {
			$("#tabs").tabs({
				cache: true,
				load: function(){
					sbweb.util.log.debug("Footnote tab load event: " + $("#tabs").data("selected.tabs"));
					sbweb.ui.anchorSelectTab("tab");
					sbweb.ui.tbPreload("tab");
					sbweb.ui.bindSectionExpander("tab");
					sbweb.ui.bindFootnoteExpander("tab");
					sbweb.ui.jModalPreload("tab");
				}
			});
		} 
		catch(pError) {}
		
		sbweb.util.url.appendMboxSessionToMatchingAnchorTags(['.getqb.com', 'oe.quickbooks.com']);
		
		sbweb.util.log.debug("JQuery Ready Event End");
		
	});

	return {};
	
}();