$(function(){

	$("input[name='set_exclusiv_online']").click(function(){
	    $('#loading').show();
	    var set = $(this).is(':checked') ? "checked" : "unchecked";
	    var art_id = $(this).val();
	    $.ajax({
	        type:"POST",
	        url:"index.php?section=articles",
	        data: "action=set_exclusiv_online&set="+ set + "&art_id=" + art_id,
	        success:function(transport){
	            if(transport == "ok"){
	                $('#loading').hide();       
	            }
	        }
	    });
	});
});

$(function(){

	$("input[name='set_cm']").click(function(){
	    $('#loading').show();
	    var set = $(this).is(':checked') ? "checked" : "unchecked";
	    var art_id = $(this).val();
	    $.ajax({
	        type:"POST",
	        url:"index.php?section=articles",
	        data: "action=set_cm&set="+ set + "&art_id=" + art_id,
	        success:function(transport){
	            if(transport == "ok"){
	                $('#loading').hide();       
	            }
	        }
	    });
	});
});
