$(function() {
	$('.curvy').corner({
			  tl: { radius: 3 },
			  tr: { radius: 3 },
			  bl: { radius: 3 },
			  br: { radius: 3 },
			  antiAlias: true,
			  autoPad: false });

	$('.curvy-bottom').corner({
			  tl: false,
			  tr: false,
			  bl: { radius: 3 },
			  br: { radius: 3 },
			  antiAlias: true,
			  autoPad: false });
	
	$('.curvy-top-left').corner({
			  tl: { radius: 3 },
			  tr: false,
			  bl: false,
			  br: false,
			  antiAlias: true,
			  autoPad: false });		 
	
	$('.curvy-top-right').corner({
			  tl: false,
			  tr: { radius: 3 },
			  bl: false,
			  br: false,
			  antiAlias: true,
			  autoPad: false });
	
	$('.curvy-top').corner({
			  tl: { radius: 3 },
			  tr: { radius: 3 },
			  bl: false,
			  br: false,
			  antiAlias: true,
			  autoPad: false });
});
