	$('.compareButton').livequery('click', function() {
	
		var clicked = $(this);
		var id = $(this).attr("rel");
		var btimg= $(this).children('img');

		if( $(this).hasClass('added') == false){
		
			$.ajax({
				   type: "GET",
				   url: "/compare/add/id/"+id+"",
				   success: function(result){
							if(result == 'isFull'){
								alert('Do porówania można dodać maksymalnie 3 produkty.');
							} else if(result == 'wrongProId'){
								alert('Nieprawidłowy identyfikator produktu.');
							} else if(result == 'hasItem'){
								alert('Ten produkt już jest dodany do porównania.');
							} else if(result == 'wrongCatId'){
								alert('Do porównania można dodawać tylko produkty z tej samej kategorii.');
							} else{
								$('#compareBox').html(result);
								btimg.animate({marginLeft: '-50px', opacity: 100}, 500);
								clicked.addClass("added");
					    	}
				   }
			});
			
		} else{
			
			$.ajax({
				   type: "GET",
				   url: "/compare/delete/id/"+id+"",
				   success: function(result){
							if(result == 'wrongProId'){
								alert('Nieprawidłowy identyfikator produktu.');
							} else{
								$('#compareBox').html(result);
								btimg.animate({marginLeft: '0', opacity: 100}, 500);
								clicked.removeClass("added");
					    	}
				   }
			});
			
		}
			
		
									
		return false;
	});

