$(document).ready(function() {
	$('#menu li').each(function(){
		$(this).click(function(){
			window.location=$(this).find('a:first').attr('href');
		});
	});
});

