$(document).ready(function() {
	$("div.clickable").click(function() {
		window.location = $(this).attr("url");
		return false;
	});
});
