/*
2011-02-01 NICO: fonctionnement de curvycorners vesion non JQUERY
Usage:
	curvyCorners(settingsObj, selectorStr);
	curvyCorners(settingsObj, Obj1[, Obj2[, Obj3[, . . . [, ObjN]]]]);

	selectorStr ::= complexSelector [, complexSelector]...
	complexSelector ::= singleSelector[ singleSelector]
	singleSelector ::= idType | classType
	idType ::= #id
	classType ::= [tagName].className
	tagName ::= div|p|form|blockquote|frameset // others may work
	className : .name
	selector examples:
	#mydiv p.rounded
	#mypara
	.rounded
*/


    $(document).ready(function() {
        initCorners();
    });


  	function initCorners() {
		/*
  		var settings = {
  			tl: { radius: 20 },
  			tr: { radius: 20 },
  			bl: { radius: 20 },
  			br: { radius: 20 },
  			antiAlias: true
  		};
  		curvyCorners(settings, ".arrondi");
		*/
		
  	    $('.arrondi').corner();
  	}
