var customMap;
var customMarker;
function initializeCustumMapMarker(){
    var latlng = new google.maps.LatLng(46.817802,-71.274153);
	var someMapOptions = {
	    zoom: 15,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.HYBRID
	};
	customMap = new google.maps.Map(document.getElementById("id_of_custom_map_div"), someMapOptions);
	var someMarkerOptions = {
	    position: latlng,
		visible: true,
		title: "Precision Custom",
		map: customMap,
	};
	customMarker = new google.maps.Marker(someMarkerOptions);
	var infoContent = '<div id="id_of_custom_info_window_div"><table class="info_window_table"><tr><td colspan=\"2\"><b class=\"info_window_title\">Pr&eacute;cision Custom</b><hr/></td></tr><tr><td><a href="http://maps.google.ca/maps/place?q=atelier+de+modification+precision+custom&hl=fr&cid=12015480033363841564" target="_blank"><img src="resource/img/contact/pc_google_link.png" alt="" /></a></td><td><a href="http://maps.google.ca/maps/place?q=atelier+de+modification+precision+custom&hl=fr&cid=12015480033363841564" target="_blank">490, rue Desrochers<br/>Qu&eacute;bec, QC, Canada<br/>G1M 1C2<br/><br/>418.907.2933</a></td></tr></table></div>';
	var customInfoWindow = new google.maps.InfoWindow({content: infoContent});
	window.setTimeout(function(){
	    customInfoWindow.open(customMap,customMarker);
	}, 2222);
	google.maps.event.addListener(customMarker, 'click', function(){
	    customInfoWindow.open(customMap,customMarker);
	});
}
/*
function refreshPosition(lat, lon){
	var latlng = new google.maps.LatLng(lat, lon);
	customMap.setCenter(latlng);
	customMap.setZoom(10);
	customMarker.setPosition(latlng);
	customMarker.setTitle("Postion: ("+lat+", "+lon+")");
}*/

