$(document).ready(function() {
	$("div.event").click(function() {
		document.location = $(this).attr("id") + ".html";
	});
});