$(function() {
		   
		//Change country selector
		$('li#change_country').click(function(){
		  if(!$('#country_selector').is(':visible')) {
				$('#country_selector').show();
		  } else {
			$('#country_selector').hide();
		  }
		});
		
		$('body').click(function(event){
			if(!$(event.target).parent().is('li#change_country')){
				$('#country_selector').hide();	
			}
		});
		
});