document.observe('dom:loaded', function(){
		
		// make rounded round corners
		$$('.cols .rounded').each(function(obj){
			if (Prototype.Browser.WebKit == true) {
				return;
			}
			curvyCorners({
				tl: { radius: 10 },
				tr: { radius: 10 },
				bl: { radius: 10 },
				br: { radius: 10 },
				antiAlias: true
			}, obj);
		});

});
