var sid = '{$SessionID}';

function CreateFlyingCart(id)
{
	jQuery('#add_to_cart' + id).click(function () {	


		
    	jQuery.ajax({
            type: 'post',
            url: '/ajax/checkout/cart/add/product',
            dataType: 'html',
            data: jQuery('#prod'+id+' :input'),
            success: function (html) {
                jQuery('#module_cart').html(html);
            },
            complete: function () {
            	
            	//$('#add_to_cart').dialog('open');
            	
                var image = jQuery('#image'+id).offset();
                var cart  = jQuery('#module_cart').offset();

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

                params = {
                    top : cart.top + 'px',
                    left : cart.left + 'px',
                    opacity : 0.5,
                    width : jQuery('#module_cart').width(),
                    heigth : jQuery('#module_cart').height()
                };

                jQuery('#temp'+id).animate(params, 'slow', false, function () {
                    jQuery('#temp'+id).remove();
                    
                    $('#add_to_cart').dialog('open');
                });
            }
        });
        return false;
    });
}

$(document).ready(function() {

	$.fx.speeds._default = 500;
	
	$(function() {
		$("#add_to_cart").dialog({        
	        autoOpen: false,
	        width: 350,
	        modal: true,        
	        show: "explode",
	        hide: "explode",        
	        resizable: false,
	        buttons: {
	            'Zur Kasse': function() {
					$(this).dialog('close');
	            	document.location.href = 'http://www.versandapotheke-allgaeu.de/checkout/cart/';      	
	            },
	            'Weiter einkaufen': function() {                
	                $(this).dialog('close');    
	            }
	        }
	    });
	});
    
});
