	function select_all()
	{
		$("input[name=\"marci[]\"]").each(function(){
			$(this).attr("checked","checked");
		});
	}

	function deselect_all()
	{
		$("input[name=\"marci[]\"]").each(function(){
			$(this).attr("checked","");
		});
	}
