function redimFooter() {
	var h = 0;
	
	$("#footer .bloc-footer").each(function() {
		if ($(this).height() > h) h = $(this).height();
	});
	
	$("#footer .bloc-footer").height(h);
}

function redimMenuProduits() {
	var l = 0;
	var padding = parseInt($("#menu-produits ul li a").css("padding-left"));
	
	$("#menu-produits ul li a").each(function() {
		l += $(this).width() + (padding * 2) + 1;	
	});
	
	if (l < 945) {
		var diff = 945 + 1 - l;
		var rep = (diff / 6);

		$("#menu-produits ul li a").each(function() {
			var cur = $(this).width();
			var neww = cur + rep + 'px';
			
			$(this).width(neww);
		});
	}
}

$(document).ready(function() {
	redimMenuProduits();
	redimFooter();
	
	$("a.zoom").fancybox();
});

function verifPaiementCheque(){
	if ($('#validCGV:checked').length == 0) {
		alert('Vous devez accepter les conditions g\351n\351rales de vente en cochant la case correspondante.');
	}
	else {
		if (confirm('Je confirme vouloir payer par ch\350que')) {
			window.open('paiement-cheque.php', '_self');
		}
	}
}

function verifPaiementCarteBleu(){
	if ($('#validCGV:checked').length == 0) {
		alert('Vous devez accepter les conditions g\351n\351rales de vente en cochant la case correspondante.');
	}
	else {
		if (confirm('Je confirme vouloir payer par carte bancaire')) {
			document.PaymentRequest.submit();
		}
	}
}

