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();
		
		// Bind common section expander event handlers
		sbweb.ui.bindSectionExpander("body");
		sbweb.ui.bindFootnoteExpander("body");		
		
		// Bind the tab event handlers to the tab load event
		$("#tabs > ul").tabs({
			cache: true,
			load: function() {
				sbweb.util.log.debug("Footnote tab load event: " + $("#tabs > ul").data("selected.tabs"));
				sbweb.ui.anchorSelectTab("tab");
				sbweb.ui.tbPreload("tab");
				sbweb.ui.bindSectionExpander("tab");
				sbweb.ui.bindFootnoteExpander("tab");
			}
		});
		
		
		// Commerce display handlers
		$('#tabbedCD div.tabPanel:first').show(); // Show the first div
		$('#first').addClass('activeTab'); // Set the class of the first link to active
		$('#tabbedCD .cdTabList a').click(function(){ //When any link is clicked
		$('#tabbedCD div').removeClass('activeTab'); // Remove active class from all links
		$(this).parent().addClass('activeTab'); //Set clicked link class to active
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('#tabbedCD div.tabPanel').hide(); // Hide all divs
		$(currentTab).show(); // Show div with id equal to variable currentTab
		return false;
		});
		
		sbweb.util.log.debug("JQuery Ready Event End");
		
	});

	return {};
	
}();