// JavaScript Document
$(document).ready(function(){
  var settings = {
	  tl: { radius: 8 },
	  tr: { radius: 8 },
	  bl: { radius: 8 },
	  br: { radius: 8 },
	  antiAlias: true,
	  autoPad: false,
	  validTags: ["div"]
  }
  $(".rounded").curvy(settings);
  // or 
  // $(".myBox").curvy("20px");
  // or 
  // $(".myBox").curvy("20px top bottom");
  // or 
  // $(".myBox").curvy("20px tr tl br bl");
  
// construit le menu de navigation principal -------------------------------------
$("#menu_nav li").hover(
		function(){ 
				$("ul.sub", this).fadeIn("fast");
				var offset = {};
				if( $("a span",this).html() != null ) {
					offset = $("a span",this).offset();
					$("ul.sub", this).css("left",offset.left);
				}
			}, 
		function() { $("ul.sub", this).fadeOut("fast"); } 
	);
  
});