Using the Corner Plugin with Images

Markup (wrap the image in a div):
<div id="imgBox"><img src="beach1.jpg" /></div>
CSS (size the div to match the image):
#imgBox, #imgBox img { width:200px; height:200px; margin:0;padding:0 }
Script (corner the div):
$.fn.corner.defaults.useNative = false;

$(document).ready(function(){
    $("#imgBox").corner("15px");
});