//  Coins arrondis NiftyCorners
//
// 1. a CSS selector that indicates on wich elements apply the function
// 2. a string that indicates wich corners to round
// 3. outer color of the rounded corners
// 4. inner color of the rounded corners
// 5. an optional fifth parameter (small, smooth, border etc.)
//
// URL : http://webdesign.html.it/articoli/leggi/528/more-nifty-corners/1
//
Event.observe(window,"load",function(){
if(!NiftyCheck())
    return;
Rounded("div.nifty01","all","#fbf5e0","#fff","border #c77e77");
Rounded("div.nifty02","all","#fbf5e0","#fed27c","border #c77e77");
Rounded("div.nifty03","all","#fbf5e0","#92070c","border #92070c"); 
Rounded("div.nifty04","all","#fbf5e0","#fff","border #bfbfbf");
Rounded("div.nifty05","all","#fbf5e0","#fff4b6","border #ad9a86");
Rounded("div.nifty06","all","#fff","#fff","border #bfbfbf");
Rounded("div.nifty07","all","#fbf5e0","#fed27c","border #c77e77");
Rounded("div.nifty_mb","all","#fbf5e0","#458dc7","border #366eb5");
Rounded("div.niftyFigaro","all","#fff","#fff","border #bfbfbf");
})