// Tab settings

$(function() {
	var tabContainers = $('div.box > div.content');
	tabContainers.hide().filter(':first').show();
	
	$('div.box > div.nav2 > ul a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.box > div.nav2 > ul li').removeClass('active');
		$(this).parent().addClass('active');
		return false;
	}).filter(':first').click();
});

