
 

 $(document).ready(function(){

     // show elements that were hidden for javascript disabled browser
     $(".hide-no-javascript").removeClass("hide-no-javascript") 
     // hide elements that were shown for javascript disabled browser
     $(".show-no-javascript").hide()


     $("#country-show").click(function(){
         $("#country-info").show()
         $("#country-show").hide() // no more use
         return false
     })
 })

 

