$(document).ready(function() {
	$('#navigation').find('li').find('a[href|='+page+'.html]').addClass('active');
	$('#navigation').find('li').find('a').click(function(e) {
		$(this).blur();
		page = $(this).attr('href').substring(0, $(this).attr('href').length-5);
		$('#navigation').find('li').find('a').removeClass('active');
		$(this).addClass('active');
		pL = '/'+page+'.txt';
		$('#content').animate({
			opacity: 0
		}, 250, function() {
			$.get(pL, null, function(response) {
				$('#content').html(response);
				$('#content').animate({
					opacity: 1
				});
			});
		});
		e.preventDefault();
	});
});

