$(function () {
	var tabContainers = $('.tabContent');
	tabContainers.hide().filter(':first').show();
	
	$('#tabs a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('#tabs a').removeClass('selected');
			$(this).addClass('selected');
			return false;
	}).filter(':first').click();
});
