$(document).ready(function(){
	$('.ajax_add_to_cart_button_combination').unbind('click').click(function(){				
		$(this).attr('disabled', 'disabled');
		ajaxCart.add( $(this).parents("form").children('.product_page_product_id').val(), $(this).parents("form").children('.idCombination').val(), true, $(this), $(this).parents("form").children('.quantity_wanted').val(), null);
		$(this).removeAttr('disabled');
		return false;
	});
});


