function initializeGoogleMap(restlat, restlng)
{
	googlemap = new GMap2(document.getElementById("igooglemapcanvas"));
	var restlocation = new GLatLng(restlat,restlng);
	var ft_rest_icon = new GIcon(G_DEFAULT_ICON, "/images/icons/foodtracker_rest.png");
	ft_rest_icon.iconSize = new GSize(40, 40);
	ft_rest_icon.iconAnchor = new GPoint(20,39);
	var restmarker = new GMarker(restlocation, ft_rest_icon);
	googlemap.addOverlay(restmarker);
	googlemap.setCenter(restlocation, 13);
}
