$(document).ready(function(){
	$('nav a').click(function(){
		if($(this).parent().hasClass('active')) return false;
	
		$('nav .active').removeClass('active');
		$(this).parent().addClass('active');
		var href = $(this).attr('href');
		$('#content .border-bottom .current').slideUp('slow', function(){
			$(this).removeClass('current');
			$(href).slideDown('slow').addClass('current');
			var newHeight =  $(href)[0].scrollHeight - $('#content .border-bottom').height();
			$('#content .border-bottom').animate({height: '+=' + newHeight}, 1000);
		});
		return false;
	});
});
