$(function () {
	var tabContainers = $('div.article > ul');
	tabContainers.hide().filter(':first').show();
			
	$('h3 a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('h3 a').removeClass('selected');
			$(this).addClass('selected');
			return false;
	}).filter(':first').click();
});

$(function () {
	var tabContainers = $('div.article > dl');
	tabContainers.hide().filter(':first').show();
			
	$('h3 a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('h3 a').removeClass('selected');
			$(this).addClass('selected');
			return false;
	}).filter(':first').click();
});