jQuery(function(){
	function assignMore() {
		$('a#moreCities').click(function(event){
			event.preventDefault();
			$("div#cities").load(
				baseUrl+"/naan/city/show",
				{'full': 1},
				function() {
					assignHide();
				}
			);
		})
	}

	function assignHide() {
		$('a#hideCities').click(function(event){
			event.preventDefault();
			$("div#cities").load(
				baseUrl+"/naan/city/show",
				{},
				function() {
					assignMore();
				}
			);
		})
	}

	assignMore();
	assignHide();
})
