$(document).ready(function() {
	$('.clickable').click(function () {
		var loc = $(this).find('a').attr('href');
		document.location.href=loc;
	});
});