	$.fn.exists = function(){return jQuery(this).length > 0;}

	$(document).ready(function()
	{
		var checkbox = $("input[name='produkt_id']");
		
		//Sprawdzamy czy element istnieje
		if(checkbox.exists())
		{

			$("input[name='produkt_id']").click(function()
			{
				$.blockUI( { message: '<h1> Czekaj... </h1>' } ); 
				
				var action = "";
				if($(this).attr("checked"))
				{
					action = "add";
				}
				else
				{
					action = "del";
				}
				
				//alert(action + " " + $(this).val());
				
				$.ajax(
				{
					type: "POST",
   					url: "/ext/compare_ajax",
   					data: "produkt_id=" + $(this).val() + "&action=" + action,
   					dataType: "text",
   					success: function(data)
   					{
   						//Odblokowanie
   						$.unblockUI();
     					//alert(data);
   					},
   					error: function(msg)
   					{
   						//Odblokowanie
   						// odcheckowac!!!!!
   						$.unblockUI();
   						alert("Blad - ajax - " + msg);
   					}
 				})
			})
		}
	})
