/*----Remove Before Publishing!

Rounded("1","2","3","4","5");

1. Selector
2. Corners:
	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
3. Outer Color
4. Inner Color
5. Corner Details
	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

Example:		
Rounded("div#nifty","all","#FFF","#D4DDFF","smooth");

---------Remove Before Publishing!-------------------*/

window.onload=function(){
if(!NiftyCheck())
    return;
Rounded("div#content","bottom","#000000","#ffffff","smooth");
Rounded("div#footer","all","#000000","#660099","small");
Rounded("div#nav","tr tl","#000000","#ff9933","smooth");
}
