		$(function () {
			var tabContainers = $('div#contentRight > div.tabable'); // get tabable divs in right column
			tabContainers.hide().filter(':first').show(); // hide them all but return first as visible
			
			$('div#contentRight ul#tabMenu a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div#contentRight ul#tabMenu a').removeClass('selected'); // turns off active content
				$('div#contentRight ul#tabMenu li').removeClass('current'); // turns off active tab
				$(this).addClass('selected'); // turns on active content
				$(this).parent().addClass('current'); // turns on active tab
				return false;
			}).filter(':first').click(); 
		});
