function buyProduct(id){
    $.ajax({
            type: 'post',
            url: '?route=module/cart/callback',
            dataType: 'html',
            data: 'product_id='+id+'&quantity=1',
            success: function (html) {
                $('#module_cart .middle').html(html);
            },

            complete: function () {
                var image = $('#image'+id).offset();
                var cart  = $('#module_cart').offset();

                $('#image'+id).before('<img src="' + $('#image'+id).attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');

                var params = {
                    top : cart.top + 'px',
                    left : cart.left + 'px',
                    opacity : 0.0,
                    width : $('#module_cart').width(),
                    heigth : $('#module_cart').height()
                };

                $('#temp').animate(params, 'slow', false, function () {
                    $('#temp').remove();
                });
            }
        });
}

function deleteProduct(id){
    $.ajax({
            type: 'post',
            url: '?route=module/cart/callback',
            dataType: 'html',
            data: 'product_id='+id+'&remove=1',
            success: function (html) {
                $('#module_cart .middle').html(html);
            }
        });
}