/* Run the code to make rounded corners.
*	This script must be run with the onLoad function.
*	The function arguments to the "RoundedXX" functions are:
*	element to modify,  
*	background color
*	inside (foreground) color
*	(optional) "small" - for small rounded corners.
*
*/

function makeNifty() {
	if(!NiftyCheck())
	return;
	RoundedTop("div#pageHeader", "white", "#6699CC");
	RoundedBottom ("div#pageHeader", "white", "Gainsboro");
 }