(function($) {
	$(document).ready(function() {
		/**
		 * Add the onclick handlers for the links.
		 */
		$('#menu .tabNavigation a').each(function(i, link_el){
			$(link_el).click(function() {
				//hide all content panes.
				$('#menu div').each(function(j, div_el){
					$(div_el).hide();
				});
				
				//show the right one.
				target_name = $(this).attr('href');
				$(target_name).show();
				
				return false;3
			});
		});
		
		/**
		 * Disable the content blocks.
		 */
		$('#menu div').each(function(i, div_el){
			if (i > 1)
			{
				$(div_el).hide();
			}
		});
	});
})(jQuery);



