CurvyCorners and Multiple Divs

CurvyCorners and Multiple Divs

Hi,

I have the following to add curvy corners to my divs;

<script type="text/javascript">
  $(document).ready(function(){
    $('#album').corner();
  });
</script>

My divs look like;

<div id="album"> ... somthing here ... </div>
<div id="album"> ... somthing here ... </div>
<div id="album"> ... somthing here ... </div>
<div id="album"> ... somthing here ... </div>

The curvycorners only works on the first div. Any ideas on how to make it work on all album divs ?