$(window).load(function () {
	$('#navigation ul li').click(function () {
		window.location.href = $(this).attr('rel');
	});
});

