$(document).ready(function () {

/* -- soulignement les titres -- */
$(".h3toh3span h3").wrapInner("<span></span>");
$(".h3toh3spanspan h3").wrapInner("<span></span>").wrapInner("<span></span>");

/* -- séparation des blocs de droites -- */
if(!$.browser.msie) {
	$.each($("#sectionRight h3 ~ h3"),function() {
		$("#sectionRight").append("<div class=\"box shadow\"></div>")
		if($(this).is("h3:last")) {
			$(this).nextAll().appendTo($(this).parent().next());
		} else {
			$(this).nextUntil("h3").appendTo($(this).parent().next());
		}
		$(this).prependTo($(this).parent().next());
	});
}
	
/* -- arrondissement les images -- */
if(!$.browser.msie) {
	$("img.curved").load(function() {
		$(this).wrap(function(){
			return '<span class="' + $(this).attr('class') + ' rounded" style="background-image:url(' + $(this).attr('src') + '); width:' + $(this).width() + 'px; height:' + $(this).height() + 'px; -webkit-background-size:100% 100%; -moz-background-size:100% 100%; background-size:100% 100%; " />';
		});
		$(this).css("opacity","0");
	});
}
});
