function MaJPanier(){

		jQuery.post("ajax/maj_panier.php", function(data){
			if(data.length >0) {
				jQuery('#encart_panier').show();
				jQuery('#encart_panier').html(data);
			}
		});
}



function MaJSsCat(cat) {
	
	
		jQuery.post("ajax/maj_sscat.php", {cat: ""+cat+""}, function(data){
			if(data.length >0) {
				jQuery('#AffSsCat').show();
				jQuery('#AffSsCat').html(data);
			}
			
		});
	
} // lookup
