$(document).ready(function() {
	
	$("#shop_aquistare_body .submit").click(function() {
		
		posId = $(this).parents("tr:first").find('.posId').val();
		posCount = $(this).parents("tr:first").find('.posCount').val();
		
		//alert(posId);
		//alert(posCount);
		
		
		bodyContent = $.ajax({
						  url: "/cart_ajax.html",
						  //global: false,
						  type: "GET",
						  data: ({posId : posId, posCount : posCount}),
						  dataType: "html",
						  async:false,
						  cache: false,
						  success: function(msg){
							 //alert(msg);
							 if (msg != 'false') {
								 $('#cart').html(msg);
								 text = '<div class="intocartok" style="text-align: center;"><br>Il Prodotto &egrave; stato messo nel carello.<br><br><br><a href="/shop/carrello.html">al carrello</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="/shop/cassa.html">alla cassa</a><br><br><a href="#">chiudi finestrino</a></div>';
								 //text = 'hallo';
								 $.fancybox( text, { maxHeight: '100px'} );
							 }
							 
						  },
						  error:function(XMLHttpRequest,status,error){

						  }
						}
		).responseText;
		return false;
		
		
		
	});
	

	
});




