[jQuery] rounded corners plugin: adding a border

[jQuery] rounded corners plugin: adding a border


adding rounded corners works great. im now trying to add a border that
follows the curves of the corners. the code below adds the border but
stops at the corners, which makes sense. any idea how that can be
fixed?
html:
<div id="memberListWrapper">
<ul id="memberList">
<li>

blah

</li>
<li>

blah

</li>
</ul>
</div>
js:
$(document).ready(function(){
$("#memberListWrapper").corner("round");
});
css:
#memberListWrapper {margin: 5px;}
#memberList {background: #fff;    padding: 10px 20px;border: 1px solid
#ccc;}