$(function () {
		var tabContainers = $('.tabBox div.tabConts');
		tabContainers.hide().filter('#tab01').show();
		
		$('ul#tab li a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('ul#tab li a').removeClass('selected');
				$(this).addClass('selected');
				return false;
		}).filter(':first').click();
});

