jQuery(document).ready(function() {
   
    
   jQuery("#shopping-cart-totals-table .a-right").each(function(){

      if (jQuery.trim(jQuery(this).text()) == 'Total HT'){
          jQuery(this).parent().css('visibility','hidden');
      }
   }); 
 
   jQuery("span.antispam").html('@');
      
    var width_fenetre  = jQuery(window).width();
    var height_fenetre = jQuery(window).height();
                       
    var width_contenu  = jQuery('.wrapper').attr('offsetWidth');
    var height_contenu = jQuery('.wrapper').attr('offsetHeight'); 
  
   
    if (height_fenetre < (height_contenu) ){
          jQuery('div.global').css('margin-top', 0 );
          jQuery('div.global').css('top', 10 );
    }else{
          jQuery('div.global').css('margin-top', -height_contenu/2 );
          jQuery('div.global').css('top', '50%' );    
    }

    if (width_fenetre < (width_contenu) ){
          jQuery('div.global').css('margin-left', 0 );
          jQuery('div.global').css('left', 0 );
    }else{
          jQuery('div.global').css('margin-left', -width_contenu/2 );
          jQuery('div.global').css('left', '50%' );    
    }  
  
  jQuery(window).bind("resize", function(){
    var width_fenetre  = jQuery(window).width();
    var height_fenetre = jQuery(window).height();
                       
    var width_contenu  = jQuery('.wrapper').attr('offsetWidth');
    var height_contenu = jQuery('.wrapper').attr('offsetHeight'); 
    
    if (height_fenetre < (height_contenu) ){
          jQuery('div.global').css('margin-top', 0 );
          jQuery('div.global').css('top', 10 );
    }else{
          jQuery('div.global').css('margin-top', -height_contenu/2 );
          jQuery('div.global').css('top', '50%' );    
    }
    
    if (width_fenetre < (width_contenu) ){ 
          jQuery('div.global').css('margin-left', 0 );
          jQuery('div.global').css('left',  0 );
    }else{
          jQuery('div.global').css('margin-left', -width_contenu/2 );
          jQuery('div.global').css('left', '50%' );    
    }  
  });   

});
