$(function(){
	$('.imagemap_links .hidden').hide();
	$('.imagemap_links h2').toggle(
		function(){
			$(this).parent().find('.hidden').show();
		},
		function(){
			$(this).parent().find('.hidden').hide();
		}		
	);
});

