// Main javascript for monkey template

	window.onload = function () {
		makeDefinitionLinks();
		makeCommentLinks();
		hideAllToggledCells();	
		tableruler();
		if( 'function' == typeof window.styleFormElements ) styleFormElements();
		if( 'function' == typeof window.collapseAllSections ) collapseAllSections();
		if( typeof init_gmap == 'function' ) init_gmap(); // Initialize Google Maps if a function exists to do so
		
	}
	window.onunload = function() {
		if( typeof init_gmap == 'function' ) GUnload(); // Unload Google Maps to prevent memory leaks
	}
	

