$(document).ready(function () {
    $('.button_compare').removeAttr('onclick');

    $('.button_compare').live("click", function () {
	alert("Товар добавлен для сравнения");
	$.ajax({
	    type: 'post',
	    url: 'index.php?route=product/compare/callback',
	    dataType: 'html',
	    data: 'product_id=' + $(this).children('[name=product_id]').val(),
	    success: function (html) {
		if(html != 0)
		{
		    $('#nothing_to_compare').remove();
		    $('#compare').append(html);
		}
	    }				
	});
    });			
});

$(document).ready(function () {
    $('.button_compare_remove').removeAttr('onclick');

    $('.button_compare_remove').live("click",function () {
	product_id = $(this).children('[name=product_id]').val();
	$.ajax({
	    type: 'post',
	    url: 'index.php?route=product/compare/callback',
	    dataType: 'html',
	    data: 'product_id=' + product_id+'&remove=1',
	    success: function (html) {
		if(html!=0)
		{
		    $('#compare').animate({display:"none"},100,"linear",function(){$('#compare_' + product_id).remove();});
		    
		}
	    }				
	});
    });			
});

