(function($) {
	$(document).ready(function() {
		var $footer = $('#course_footer');
		var $tabList = $('<div/>').addClass('sys_footer_tab_navigation');
	
		var $tab = $('<div/>').addClass('sys_footer_tab');
	
		$footer.children('h2').each(function(i) {
			$header = $(this);
			$tab.clone(true)
				.text($header.text())
				.click(function() {
					$footer
						.children('.sys_footer_text').hide()
						.filter(':eq(' + i + ')').show();
					$tabList
						.children().removeClass('sys_footer_tab_selected')
						.filter(':eq(' + i + ')').addClass('sys_footer_tab_selected');
				})
				.appendTo($tabList);
			$header.hide();
		});
	
		$footer.children('div')
			.addClass('sys_footer_text')
			.filter(':not(:first)')
			.hide();

		$tabList.append($('<div />').addClass('clear'));
		$tabList.children('div:first').addClass('sys_footer_tab_selected');
		$footer.prepend($tabList);
	});
})(jQuery);