$().ready(function() {	
	var total = $('#total .price .numbers').html();
	var shipping = $('#shipping .price .numbers').html();
	var reset = total;
	
	if (shipping == 5.9) {
		reset = total - shipping; 
		reset = reset.toFixed(2);
	}
	
	if ($('#Corriere').is(':checked'))
	{
		$('#ezcashpayment').attr('disabled', 'disabled');
	} 
	
	$('#Corriere').click(function() {		
		$('#ezcashpayment').attr('disabled', 'disabled');
		if ($('#ezcashpayment').is(':checked')) {
			$('#ezcashpayment').removeAttr('checked');
			$('#ezbancasella').attr('checked', 'checked');
		}
	});
	
	if ($('#SDA').is(':checked'))
	{
		$('#ezcashpayment').attr('disabled', 'disabled');
	} 
	
	$('#SDA').click(function() {		
		$('#ezcashpayment').attr('disabled', 'disabled');
		if ($('#ezcashpayment').is(':checked')) {
			$('#ezcashpayment').removeAttr('checked');
			$('#ezbancasella').attr('checked', 'checked');
		}
	});
	
	$('#Poste').click(function() {		
		$('#ezcashpayment').removeAttr('disabled');
	});
	
	addToBasket();
	
});
