$(document).ready(function() {
 // cache les baremes de frais de port
  jQuery('#commande').hide();
  
  jQuery('#clic-commande').click(function() {
    jQuery('#commande').slideToggle(400);
    return false;
  });
});