function CreateAddToCart(id, artikelname)
{
	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 () {
            	
            	var image = jQuery('#image'+id).offset();
                var cart  = jQuery('#module_cart').offset();

                jQuery('body').after('<img src="' + $('#image'+id).attr('src') + '" id="temp'+id+'" width="200" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px; z-index:99;" />');
                
                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();
                    
                    centerPopup();                    
                    loadPopup(artikelname);
                 
					$("#popupContactClose").click(function(){
						disablePopup();
					});
					
					//Click out event!
					$("#popup-background").click(function(){
						disablePopup();
					});
					
					//Press Escape event!
					$(document).keypress(function(e){
						if(e.keyCode==27 && popupStatus==1){
							disablePopup();
						}
					});
                    
                });
            }
        });
        return false;
    }); 
}

function CreateAddToCart2(id, artikelname)
{
	jQuery('#add_to_cart_2_' + 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 () {
            	
            	var image = jQuery('#image'+id).offset();
                var cart  = jQuery('#module_cart').offset();

                jQuery('body').after('<img src="' + $('#image'+id).attr('src') + '" id="temp'+id+'" width="200" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px; z-index:99;" />');
                
                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();
                    
                    centerPopup();                    
                    loadPopup(artikelname);
                 
					$("#popupContactClose").click(function(){
						disablePopup();
					});
					
					//Click out event!
					$("#popup-background").click(function(){
						disablePopup();
					});
					
					//Press Escape event!
					$(document).keypress(function(e){
						if(e.keyCode==27 && popupStatus==1){
							disablePopup();
						}
					});
                    
                });
            }
        });
        return false;
    }); 
}
