$(window).ready(function() {
	$('.box')
		.each(function() {
			// aktiver runde hjørner
			$(this)
				.corner("round 10px");
				
			$(this)
				.children('div.box_title')
				.corner("round 10px");
		});
});