This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
247 B
JavaScript

$(document).ready(function() {
$('#menu a').click(function(){
$('#content_frame_frame').load('./?page='+$(this).attr('page'));
});
$('#map_link').click(function(){
$('#map_modal').modal();
drawmap();
});
});