$(document).ready(function() {
	$("#links ul li").bind("click", function(e){
		window.location = $(this).find('a').attr('href');
	});
});