$("form#PostAddForm").ready(function() {
	$("fieldset.swb :radio").bind("change", function(el){
		var other = $(this).attr("id").match(/(\d)/);
		var num = RegExp.$1;
		$("fieldset.swb > *.in" + num).toggle();
	});
});