function CartAdd(product_id) {
	var image_id = '#image-'+ product_id;
	var image = $(image_id).position();
	var cart  = $('#module_cart').position();
	
	$(image_id).before('<img src="' + $(image_id).attr('src') + '" id="temp" style="position:absolute;top:' + image.top + 'px;left:' + image.left + 'px" />');
	params = {
		top : cart.top + 'px',
		left : cart.left + 'px',
		opacity : 0.0,
		width : $('#module_cart').width(),
		height : $('#module_cart').height()
	};

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

	$.ajax({
		type: 'post',
		url: 'index.php?route=module/cart/callback',
		dataType: 'html',
		data: 'quantity=1&product_id=' + product_id,
		success: function (html) {
			$('#module_cart .block-content').html(html);
			alert("کالای مورد نظر شما با موفقیت به سبدخرید افزوده شد");
		}
	});
}
