/*
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 

if(!NiftyCheck())
	return;
var visa;
if(window.document.getElementById('slidepics')!=null){
	visa = "div#slidepics li";
} else {
	visa = "div#minipics li";
}
RoundedTop("div#container","#FFF","#e7e7e7");
RoundedBottom("div#container","#FFF","#8395CB");
//RoundedBottom("div#footer","#FFF","#8395CB");
RoundedTop("ul#nav li","transparent","#FFC");
Rounded("div#box","#CC99CC","#999999");
Rounded(visa,"#CC99CC","#FFF");
RoundedTop("div.gradient","#CC99CC","#B8B8B8");
RoundedBottom("div.gradient","#CC99CC","#ECECF2");
}
*/

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

Rounded("div#slidepics li","all","#CC99CC","#FFF","smooth");
Rounded("div#minipics li","all","#CC99CC","#FFF","smooth");
//Rounded("div#container","top","#D6DEEC","#e7e7e7","smooth border #999");
//Rounded("div#container","bottom","#D6DEEC","#CC99CC","smooth border #999");
//Rounded("div#container","bottom","#FFF","#8395CB");
Rounded("div#box","all","#d3daca","#999999","small border #FFF");
//Rounded("div#header","top","#FFF","#e7e7e7","smooth border #999");
//Rounded("div#nav li","bottom","transparent","#FFC","border #000");	
//Rounded("div#footer","all","#D6DEEC","#8395CB","smooth border #999");


}