/**
 * Add switch countries functionnalities.
 *
 * @author Loops <pierrot at nvision dot lu>
 */
 
jQuery(document).ready( function(){ 
  jQuery('#switch-country').removeClass('open');
  jQuery('#switch-country a#switch-country-link').bind( 'click' , function(e){ jQuery('#switch-country').toggleClass('open'); return false; } );
} );