function initCurvyCorners(){
	fullround = { 
		tl: { radius: 15 }, 
		tr: { radius: 15 }, 
		bl: { radius: 15 }, 
		br: { radius: 15 }, 
		antiAlias: true
	};
	topround = { 
		tl: { radius: 10 }, 
		tr: { radius: 10 }, 
		bl: { radius: 1 }, 
		br: { radius: 1 }, 
		antiAlias: true
	};
	smfullround = { 
		tl: { radius: 10 }, 
		tr: { radius: 10 }, 
		bl: { radius: 10 }, 
		br: { radius: 10 }, 
		antiAlias: true
	};
	smallround = { 
		tl: { radius: 5 }, 
		tr: { radius: 5 }, 
		bl: { radius: 5 }, 
		br: { radius: 5 }, 
		antiAlias: true
	};
	bottomround = { 
		bl: { radius: 10 }, 
		br: { radius: 10 }, 
		antiAlias: true
	};
	leftround = { 
		tl: { radius: 10 }, 
		bl: { radius: 10 }, 
		antiAlias: true
	};
	curvyCorners(fullround, ".fullrounded");
	curvyCorners(smallround, ".smallrounded");
	curvyCorners(bottomround, ".bottomrounded");
	curvyCorners(leftround, ".leftrounded");
	curvyCorners(smfullround, ".itemarounded");
	curvyCorners(topround, ".itemtoprounded");
	curvyCorners(topround, ".subtitletopround");

}
function showComments(id){
	jQuery("#"+id).toggle('slow',redraw);
	curvyCorners.redraw();
}
function redraw(){
	curvyCorners.redraw();
}
function init(){
	Custom.init();
}