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

$('#add_to_cart').click(function () {
        $.ajax({
                type: 'post',
                url: 'index.php?route=module/cart/callback',
                dataType: 'html',
                data: $('#product :input'),
                success: function (html) {
                        $('#module_cart .holder').html(html);
                },
                complete: function () {
                        var image = $('#image').offset();
                        var cart  = $('#module_cart').offset();

                ;

                        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();
                        });
                }
        });
});			
});
