// Define these rounded corners in the style sheet with:
// -webkit-border-radius, -moz-border-radius and border-radius
// Doing this will means that the rounded corners will show in
// all browser apart from IE even if javascript is disabled

$(".rounded")
	.corner("tl 10px")
	.corner("tr 10px")
	.corner("bl 10px")
	.corner("br 10px");
	
$(".roundedSmall")
	.corner("tl 5px")
	.corner("tr 5px")
	.corner("bl 5px")
	.corner("br 5px");
