$(function(){
	$(".news").each(function(){
		$(this).corner("round 2px").wrap("<div class='newswrap'"+($(this).attr('id')?" id='"+$(this).attr('id')+"'":'')+"></div>");
		$(this).removeAttr("id");
	});
	$(".newswrap").corner("round 6px");
	$(".nicebutton").each(function(){
		$(this).children("a").corner("round 3px").parent().corner("round 4px");
	});
	$("fieldset.tabui legend a.tabber[href]").each(function(){
		$(this).corner("round top 3px").wrap("<span class='tabberwrap'></span>");
	});
	$("fieldset.tabui legend .tabberwrap").corner("round top 4px").last().css("margin-right","0");
	$(".disabled").css("opacity","0.25");
	$(".tglbranded").corner("round 8px");
});

