$(document).ready(function()
{
	$('nav ul li a.actief').delay(0).animate({backgroundPosition:'0 0'}, 200);
	$('nav ul li a').click(menuClick);
	$('header h1 a').click(logoClick);
	$('#portfolio p a').click(projectClick);
});

function menuClick(e)
{
	e.preventDefault();
	
	var href = $(this).attr('href');
	
	$('.actief').animate({backgroundPosition:'-120px 0'}, 150, function()
	{
		window.location = href;
	});
}

function logoClick(e)
{
	e.preventDefault();
	
	var href = $(this).attr('href');
	
	$('.actief').animate({backgroundPosition:'-120px 0'}, 150, function()
	{
		window.location = href;
	});
}

function projectClick(e)
{
	e.preventDefault();
	
	$(this).css('border-top-color', '#e4e4e4');
	$(this).css('border-right-color', '#e4e4e4');
	$(this).css('border-bottom-color', '#e4e4e4');
	$(this).css('border-left-color', '#e4e4e4');
	
	var href = $(this).attr('href');
	
	$('html, body').animate({scrollTop:0}, 500);
	
	$(this).parent().siblings().hide(500, function()
	{
		window.location = href;
	});
}
