$(document).ready( function() {
	$('a.bottone-acquista:not(.telephone-english)').each(function() {
		$(this).attr('href', 'javascript:void(0)')
		$(this).click( function() {
			$('.box-widget.carrello').html('<h2 class="carrello"><em class="e-bag">my e-bag</em></h2><p style="padding: 20px 0 0; text-align: center;"><img src="/images/ajax-loader.gif"></p>');
			id = $(this).attr('id');
			$.get('/e-bag/acquista-prodotto-ajax/' + id, responseWidget);
		});
	});
});

function responseWidget(data) {
	$('.box-widget.carrello').hide();
	$('.box-widget.carrello').html(data);
	$('.box-widget.carrello').fadeIn();
}
