﻿$jQuery(document).ready(function() {
  //country selection script 
  $jQuery('.country-select-link').click(function() {
    if ($jQuery('.country-dropdown').is(":hidden")) {
      $jQuery('.country-dropdown').slideDown("fast");
    }
    else {
      $jQuery('.country-dropdown').slideUp("fast");
    }
  });
});