$(document).ready(function() {
	var hash = location.href.split('/').pop();

    $('body').css('opacity','0.99');

	$('#menu li a').each(function() {
		if (hash == $(this).attr('href')) {
			$(this).addClass('selected');
		}
	});
});
