var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

$(document).ready(function() {
	$('#contenuPanier > li').hover(function() {
		if (obj) {
			obj.find('ul').slideUp('fast');
			obj = null;
		} //if
		
		$(this).find('ul').slideDown('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
	
	//console.log($("#texte_destinatairecmd"));
	$("#texte_destinatairecmd").parents('form').bind('submit', function() {
		
		
		if($("#texte_destinatairecmd").val() == '' || $("#texte_destinatairecmd").val() == undefined) {
			return confirm('Si votre panier contient un vol en montgolfière, merci de remplir les champs "Date de vol souhaitée" ainsi que le champs concernant les participants au vol.');
		}
	});
});
