// Main javascript for monkey template

	window.onload = function () {
		makeDefinitionLinks();
		makeCommentLinks();
		tableruler();
		if( 'function' == typeof window.styleFormElements ) styleFormElements();
		if( typeof init_gmap == 'function' ) init_gmap(); // Initialize Google Maps if a function exists to do so

		var options_xml = {
			script:"/lp/library/tags_suggest.php?",
			varname:"input"
		};
		var as_xml = new AutoSuggest('phrase', options_xml);
	}
	window.onunload = function() {
		if( typeof init_gmap == 'function' ) GUnload(); // Unload Google Maps to prevent memory leaks
	}


