var aSettings = new Array();
aSettings['path'] = "images/cities/1/";					// Path to images-directory.

//aSettings['mapsDir'] = "maps";		// Directory name inside the aCAM['path'] which contains the maps
//aSettings['mapsExtension'] = ".png";	// Extension of the map files e.g. (.png, .jpg, .gif)

aSettings['mapSectionWidth'] = 448;		// Dimenstion: Visible map-section
aSettings['mapSectionHeight'] = 448;

aSettings['perimeterWidth'] = 200;		// Dimension: Perimeter area
aSettings['perimeterHeight'] = 200;

aSettings['mapOriginX'] = 6419;			// Map-origin
aSettings['mapOriginY'] = 9834;

aSettings['zoomLevel'] = new Array(100, 75, 50, 25);		// All available zoom levels as percent-values
aSettings['zoom'] = 25;										// Current zoom level

aSettings['modeShowPerimeter'] = false;		// Mode to show or hide the perimeter on the map
aSettings['modeShowPoint'] = false;    // Mode to show or hide the point on the map
aSettings['modeMapClickable'] = true;		// Mode to set the visible map area clickable or not

//aSettings['scrollLength'] = 10;		// Step width on scrolling
//aSettings['scrollInterval'] = 30;		// Delay in ms between scroll steps

aSettings['callbackFuncGetClickPos'] = clickOnMap;

camAddEvent(window, 'load', startMap);
