$(function(){

	// Keep active state when the link is clicked and the page is loading	
	$('nav a').click(function(){
		$(this).addClass('current');
	})

});

