$(document).ready(function () {
	$('#add_to_cart').removeAttr('onclick');

	$('#add_to_cart').click(function () {
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/cart/callback',
			dataType: 'html',
			data: $('#product :input'),
			success: function (html) {
				$('#module_cart .middle').html(html);
				document.getElementById("txtcart").value=html;
				document.getElementById("chkcart").value=0;
			},	
			complete: function () {
				var image = $('#image').offset();
				var cart  = $('#module_cart').offset();
// 				document.getElementById("content_cart").style.backgroundColor='red';
// 				document.getElementById("content_cart").style.height='70px';
				document.getElementById("content_cart").innerHTML='<p style="color:#fff; font-size:22px;padding-top:15px;padding-bottom:15px;text-align:center;"><b>Articolo aggiunto<br> con Successo!</b><br></p>';
				image.top = 330;
				image.left = 320;
				$('#image').before('<img src="' + $('#image').attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
				
				params = {
					top : '0px',
					left : '710px',
					opacity : 0.0,
					width : document.getElementById("content_cart").width,  
					height : document.getElementById("content_cart").height
				};		
	
				$('#temp').animate(params, 1000, false, function () {
					$('#temp').remove();
				document.getElementById("content_cart").style.backgroundColor='transparent';
				document.getElementById("content_cart").innerHTML='Un Articolo Inserito';
// 				document.getElementById("content_cart").style.height='25px';
				chamgeCart();
				});		
			}			
		});
	});


});

