$(function () {
	$('#shows li').each(function () {
		var href = $(this).find('a').attr('href');
		$(this).click(function () {
			window.location.href = href;
		});
	});
});
