Common = Class.create();

Common.prototype = {

	initialize: function() {

	},
	
	helpContent: function() {
		var html = "";
		html += "<ol>";
		html += "<li>To add a point hold down 'a' and click the map";
		html += "<li>To zoom in hold down 'z' and click the map";
		html += "<li>To return to the main map click the logo in the top left";
		html += "<li>Click any point to find information about it";
		html += "</ol>";
		return html;
	},

	aboutContent: function() {
		var html = "";
		html += "ok, we'll have to work on this";
		return html;
	}

};

// singleton
var theCommon = new Common();

