
Event.observe(window, "load", home_init);

function home_init(event) {
if(!NiftyCheck())
	return;
/*
Syntax reminder: 
Rounded(selector, corner list, outer color, inner color, options
Corner List:
    * 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
Options List:
    * 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

*/

//Rounded("div#cap_list", "all", "#FFFFFF", "transparent", "smooth border #9E9E96");
/*
Rounded("div#cap_list", "bottom", "#FFFFFF", "#EFF3EF", "border #9E9E96");
Rounded("#cap_list h3", "top", "#EFF3EF", "#9EA296", "smooth");
*/

Rounded("div#cap_list","top","transparent","#9EA296","border #9E9E96");
Rounded("div#cap_list","bottom","transparent","#EFF3EF","border #9E9E96");


}

