$(document).ready(function()
{	
	$(".button").bind("click",check);
});
function check()
{
	a = $(this).parent().parent().find("#volAdults").val();
	c = $(this).parent().parent().find("#volKids").val();
	b = $(this).parent().parent().find("#volBabes").val();
	
	tot = parseInt(a)+ parseInt(b)+parseInt(c);
	if(tot > $(this).parent().find("#max").val())
	{
		alert("Votre sélection n'est pas possible, veuillez choisir moins de passager pour ce vol");
		return false;
	}
	if(tot > $("#go_max").val())
	{
		alert("Votre sélection n'est pas possible, veuillez choisir moins de passager pour ce vol");
		return false;
	}	
	
}