$(document).ready(function(){
	$("div.column div").css('cursor' , 'pointer');
	$("div.column div").click(function (e) 
	{	
		e.preventDefault();
		window.location.href='http://www.etoiles-alsace.com/' + $(this).attr('class') + '/' + $(this).attr('id') + '.html';
	});
});

