   
/* Gestion des frais de port */
/*
$(document).ready(function() {
	if($('body.french').length != 0) {
      $("tr.shipping td:contains('Offert')").text('Nous consulter');
      $("input.radio").change(function() {
        alert('Nous consulter pour une livraison avec UPS ou par Transporteur');
      });
    }
    if($('body.english').length != 0) {
      $("tr.shipping td:contains('Offert')").text('Contact us');
      $("input.radio").change(function() {
        alert('Please contact us for delivery by UPS or Carrier');
      });
    }
});
*/
/* Fin de Gestion des frais de port */  

/* Gestion des stock */
/*
$(document).ready(function() {
      $('div.stock img').parent().parent().hide();
});
*/
/* Fin de gestion des stock */     

/* Gestion de la redirection allemande */
$(document).ready(function() {
	if($('body.french').length != 0) {
      if ($('.box_login_state').length != 0) {
		if ($(".group").attr("id")=='Private') {
     		$(location).attr('href','http://www.staticline-military.com/fr/e-shopping/allemand/');
        };
      }
    }
    if($('body.english').length != 0) {
      if ($('.box_login_state').length != 0) {
		if ($(".group").attr("id")=='Private') {
     		$(location).attr('href','http://www.staticline-military.com/en/e-shopping/germany/');
        };
      }
    }
});
/* Fin de la gestion de la redirection allemande */      

