var roundedCornersOnLoad = function () { 

	    roundClass(null, "ControlTable" , {corners: "all"});
	    roundClass(null, "es-round-corners-top" , {corners: "top"});
	    roundClass(null, "es-round-corners-bottom" , {corners: "bottom"});
	    roundClass(null, "es-round-corners-all" , {corners: "all"});
	    
	    if ( document.getElementById( 'AdminMenuBar' )) {
	       roundElement( "AdminMenuBar" , {corners: "top"} );
	    }
	    if ( document.getElementById( 'ContactUsMenuBar' )  ){
	        roundElement( "ContactUsMenuBar" , {corners: "top"} );
	    }
	    if ( document.getElementById( 'Footer' ) ) {
	        roundElement( "Footer" , {corners: "bottom"} );
	    }
	} 
	
	//window.onload=roundedCornersOnLoad;