// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

 function showMap() {
 	$('fullmap').update('<a href="#" onClick="hideMap()"><img src="/images/east_africa_map.png"></a>');
	$('fullmap').show();
 }
 
 function hideMap() {
	$('fullmap').update();
 	$('fullmap').hide();
 }
