/*
window.onload=function(){
  if(!NiftyCheck())
    return;
  //Syntax: element#id, [top,bottom,etc.], outside color, inside color, options
  //Options: smooth (for anti aliasing), border #color, small (for small round corners)
  Rounded("h3#fivepc-sec1-hdr","top","#FFF","#923240","smooth");  
  Rounded("h3#fivepc-sec2-hdr","top","#FFF","#949CC1","smooth");  
  Rounded("h3#fivepc-sec3-hdr","top","#FFF","#DDBDA8","smooth");  
  Rounded("h3#fivepc-sec4-hdr","top","#FFF","#BADAB5","smooth");  
  Rounded("h3#fivepc-sec5-hdr","top","#FFF","#C7989E","smooth");  
  
}
*/
function doNifty(){
  if(!NiftyCheck())
    return;
  //Syntax: element#id, [top,bottom,etc.], outside color, inside color, options
  //Options: smooth (for anti aliasing), border #color, small (for small round corners)
  Rounded("h3#section-hdr-maroon","top","#FFF","#923240","smooth");  
  Rounded("h3#section-hdr-blue","top","#FFF","#949CC1","smooth");  
  Rounded("h3#section-hdr-tan","top","#FFF","#DDBDA8","smooth");  
  Rounded("h3#section-hdr-green","top","#FFF","#BADAB5","smooth");  
  Rounded("h3#section-hdr-ltmaroon","top","#FFF","#C7989E","smooth");  
  Rounded("h3#section-hdr-maroon-x","top","#FFF","#923240","smooth");  
  Rounded("h3#section-hdr-blue-x","top","#FFF","#949CC1","smooth");  
  Rounded("h3#section-hdr-tan-x","top","#FFF","#DDBDA8","smooth");  
  Rounded("h3#section-hdr-green-x","top","#FFF","#BADAB5","smooth");  
  Rounded("h3#section-hdr-ltmaroon-x","top","#FFF","#C7989E","smooth");  
}

