/*
   This file defines a javascript class called "mapClass"
   and instantiates a mapClass object called "map"

   All map functions are methods of the map object
*/

mapClass = function(){};
map = new mapClass();
	  


 