
$(function() {
	$('div#selection').click(function() {
		var lien = $(this).find('a').attr('href');
		window.location = lien;
	});
});

