round_images = function() {
	$('.c_image img, .gallery img').dropCurves({
		bSize: 0,
		sX: 0,
		sY: 0,
		r: 15,
	});
}

$(function() {
	$.cms.ajax.effect = function(arg) {
		if ($.cms.popup.lock) {
			$.cms.popup.toggle(!arg);
		} else {
			$('#main').stop().fadeTo($.cms.effects,arg?0:1);
		}
		round_images();
		return false;
	};
	
	round_images();
});
