/* ====================================================== */
/* =========   Google Maps API / JNID Mapping   ========= */
/* ==========  jordan.noret.info Travel Blog    ========= */
/* ==========        Version A09.07.17          ========= */
/* ====================================================== */

// Set map controls, etc.

function jmap_inits(){
	jmap.setMapType(G_PHYSICAL_MAP);
	jmap.addControl(new GOverviewMapControl(new GSize(200, 100)));
	var jmap_currentType = "physical";
	jmap_setTypeButton('physical');
}

function restyleOverviewMap() {
	var overview_map = document.getElementById("jmap_canvas_overview");
	
	overview_map.firstChild.style.borderLeft = "2px solid #000000";
	overview_map.firstChild.style.borderTop = "2px solid #000000";
	overview_map.firstChild.firstChild.style.width="200px";
	overview_map.firstChild.firstChild.style.height="100px";
  
	overview_map.firstChild.firstChild.style.left="0px";
	overview_map.firstChild.firstChild.style.top="0px";
	overview_map.firstChild.firstChild.style.width="200px";
	overview_map.firstChild.firstChild.style.height="100px";
}

// Set initial map zoom and center
function jmap_initialZoom(){
	jmap.setCenter(new GLatLng(20, -45), 2);
}

var jmap_title = "My Travel Blog";
var jmap_menu_title = 'Location Menu<br /><span style="font-size:12px; font-family:Arial, Helvetica, sans-serif; font-weight:normal;"><img src="' + Cpath_toJnidImages + 'icons/pencil-15px.png" height="15" width="15" alt="" title="This category is in blog format." /> - "blog" format &nbsp; <img src="' + Cpath_toJnidImages + 'icons/photo-15px.png" height="15" width="15" alt="" title="This category/marker contains photos." /> - photo(s) included </span>';

var zoomLevel_marker = 10;
var jmap_files = [];
    jmap_files.push(Cpath_toXml + "travel-blog/airports.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/parks.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/ski-resorts.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/cruise-2005.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/cruise-2005route.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/rmnp-2008.xml");
    jmap_files.push(Cpath_toXml + "travel-blog/cruise-2009.xml");
	
var jmap_iconPath = Cpath_toJnidImages + "jmap-icons/";