$(document).ready(function() {
	$('div.demo').corner("round 8px").parent().corner("round 10px");
    $('.cornered').corner();
    $('.boite-illu').corner();
	$('div.remote a').each(function() {
		var a = $(this);
		var remote = a.parent();
		var url = a.attr('href');
		$.ajax({
			type:"get",
			url:url,
			dataType:"html",
			success:function(data) {
				remote.html(data);
				$('.cornered', remote).corner();
			}
		});
	});
});
