$(document).ready(function(){
	$("a[name^=part_]").remove();
	$("a").removeAttr("file_id");
	$("div.NewForms .checkAnswers input[type=checkbox]").each(function(){
		if ($(this).next().html().indexOf("me o vseh aktualnih dogajanjih") > -1)
		{
			$(this).attr('checked','checked');
		}
	});
});