(function ($) {
	$(function () {
		var tabbedContent = $('div.tabbed-content');
		if (tabbedContent.length) {
			var tabBar = $('ul.tabs', tabbedContent);
			var tabs = $('> li', tabBar);
			$('div.tab', tabbedContent).not('.current').hide();
		
			$('> a', tabs).bind('click', function (e) {e.preventDefault();});

			if (tabs.length > 1) {
				$('> a', tabs).bind('click', function (e) {
					var me = $(e.target);
					var switchTo = $('' + me.attr('href'));
					if (switchTo.not(':visible')) {
						// switch li class
						$('> li.current', tabBar).removeClass('current');
						me.parent('li').addClass('current');
							
						// hide .current tab/remove .current
						$('div.current', tabbedContent)
							.removeClass('current')
							.hide();
							
						// show new tab/add .current
						switchTo
							.addClass('current')
							.show();
					}
				});
			}
		}
	});
})(jQuery);