
$(function()
{
	$('.button_acquista').click(function()
	{
		$('#id_prodotto').val( $(this).attr('name') );
		$('#frmProdotto').submit();
	});
});
