/*
all - will round all corners 
top - will round top corners 
bottom - will round bottom corners 
tl - will round top-left corner 
tr - will round top-right corner 
bl - will round bottom-left corner 
br - will round bottom-right corner 

smooth - will produce lighly antialiased nifty corners: the Javascript library will compute automatically the intermediate color to blend the inner and outer color more gently: so, in this case they must be both be specified. 
border - (followed by a color in hex code with # symbol, in three or six digits) will make corners with edges. Note that you can also get transparent corners, but just outside the edges. 
small - will produce small corners, and could be applied to every kind of corners 

*/

window.onload=function(){
if(!NiftyCheck())
    return;

Rounded("div#topMain","all","#FFF","#CED8C7","smooth");
Rounded("div#mejl","all","#FFF","#CCC","smooth");	

}
