//jQuery(document).ready(function () {

    //var value = jQuery('#add_to_cart').attr('value');
    //var html = '<input id="add_to_cart" type="image" src="/templates/pharmacy/p/img/design/but-wk.png" />';
    
    function CreateFlyingCart(id)
    {
    	
    	//alert(id);
    	
    	var value = jQuery('#add_to_cart' + id).attr('value');
	    
	    var html = '<input type="submit" id="add_to_cart'+id+'" name="refresh_submit" value="' + value + '" title="' + value + '"/>';
	    
	    jQuery('#add_to_cart' + id).replaceWith(html);
	    
	    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('#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();
	                });
	            }
	        });
	        return false;
	    });
	    
	}
    
//});
