// JavaScript Document
// usage of dd_roundies: DD_roundies.addRule('.box', 'borders', true); or DD_roundies.addRule('#box', 'borders', true);. 
// borders=     
//		*  '10px' sets all corner radii to 10px.
//    * '10px 5px' sets the top-left and bottom-right corner radii to 10px, and the other corners to 5px.
//    * '10px 5px 3px' sets the top-left to 10px, the top-right to 5px, the bottom-right to 3px, and the bottom-left to 5px.
//    * '10px 5px 3px 0' sets the top-left to 10px, the top-right to 5px, the bottom-right to 3px, and the bottom-left to 0px.

//NOTE: the element MUST have a border declared in stylesheet, even 0px transparent!


DD_roundies.addRule('#navigation', '0 0 10px 10px',true); 
DD_roundies.addRule('.rounds4', '10px 10px 10px 10px',true); 



