$(document).ready(function() {
	$('#city > a').click(function(event){
		event.preventDefault();
		event.stopPropagation();
		$('#city .modal').toggleClass('hidden');
	});
	$('html').click(function(event){
		$('#city .modal').addClass('hidden');
	});
	$('#city .modal').click(function(event){
		event.stopPropagation();
	});

	$('#city .modal a').click(function(event){
		$('#city .modal').toggleClass('hidden');
	});
});
