$(document).ready(function () {
    $('.add_to_cart').click(function(){

        if($(this).attr('rel') == undefined)
            return false;

        var rel = $(this).attr('rel');
        
        $('#temp').stop().remove();
        
        $.ajax({
            type: 'post',
            url: 'index.php?route=module/cart/callback',
            dataType: 'html',
            data: $('#product' + rel + ' .tosave, #product' + rel + ' :checked'),
            success: function (html) {
            //$('.basket').html(html);
            },
            complete: function () {
                var image = $('#big_image'+ rel);

               // $('#big_image'+ rel).before('<img src="' + $('#big_image'+ rel).attr('src') + '" id="temp" style="position: absolute; top: ' + image.position().top  + 'px; left: ' + image.position().left + 'px;" />');

                $('#big_image'+ rel).before('<img src="' + $('#big_image'+ rel).attr('src') + '" id="temp" style="position: absolute; z-index: 1000; top: ' + image.position().top  + 'px; left: ' + image.position().left + 'px;" />');

				params = {
					top : '-30px',
					left : '450px',
					opacity : 0.0,
					width : 50,
					heigth : 50
				};

				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').stop().remove();
				});
			 
            }
        });
       
        return false;
    });
});
