jQuery(document).ready(function($){
	$('#content ul li').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
});
