	//<![CDATA[

	var map;
	var geoCenter = new GLatLng(41.401662,-82.657401);
	var geoHome = new GLatLng(41.401662,-82.657401);
	/*
	5608 Milan Road
	Sandusky, Ohio 44870
	*/
	var zoomInitial = 10;

	var baseIcon = new GIcon();
	baseIcon.shadow = 'images/icons/map/marker-shadow.png';
	baseIcon.iconSize = new GSize(12, 20);
	baseIcon.shadowSize = new GSize(22, 20);
	baseIcon.iconAnchor = new GPoint(4, 20);
	baseIcon.infoWindowAnchor = new GPoint(4, 23);
	baseIcon.infoShadowAnchor = new GPoint(18, 25);


	var geoAllAmericanInnSuitesNorwalk = new GLatLng(41.275145,-82.608287);
	/*
	415 Milan Avenue
	Norwalk, Ohio 44857
	*/
	var geoBellevueHotelsSuites = new GLatLng (41.272175,-82.825173);
	/*
	1120 East Main Street
	Bellevue, Ohio 44811
	*/
	var geoBestBudgetInnSandusky = new GLatLng(41.398631,-82.654360);
	/*
	5918 Milan Rd
	Perkins OH 44870
	*/
	var geoBestWesternNorwalk = new GLatLng(41.270117,-82.609505);
	/*
	351 Milan Ave
	Norwalk OH 44857
	*/
	var geoComfortInnMaingateSandusky = new GLatLng(41.442317,-82.685021);
	/*
	1711 Cleveland Rd W
	Sandusky OH 44870
	*/
	var geoComfortInnMilan = new GLatLng(41.333546,-82.624784);
	/*
	11020 Milan Road 
	Milan, Ohio 44846
	*/
	var geoComfortInnSandusky = new GLatLng(41.398857,-82.654586);
	/*
	5909 Milan Road
	Sandusky, Ohio 44870
	*/
	var geoComfortSuitesSandusky = new GLatLng(41.396650,-82.652389);
	/*
	6011 Milan Road 
	Sandusky, Ohio 44870
	*/
	var geoHolidayInnExpressPortClinton = new GLatLng(41.524376,-82.858672);
	/*
	50 Northeast Catawba Road
	Port Clinton, Ohio 43452
	*/
	var geoRodewayInnSandusky = new GLatLng(41.431563,-82.687202);
	/*
	2905 Milan Road (US Route 250)
	Sandusky, Ohio 44870
	*/
	var geoTravelodgeSandusky = new GLatLng(41.398902,-82.654631);
	/*
	5906 Milan Road (US Route 250)
	Sandusky, Ohio 44870
	*/
	var geoCedar = new GLatLng(41.480593,-82.683872);
	
	
	var markers = new Array();

	markers[0] = {'point':geoHome,'htmlOnly':'<h3 style="margin:0; padding:0;">Americas Best Value Inn Sandusky</h3><p><a href="value-inn-sandusky.html">Visit Website</a></p>','color':'red','opened':false};
	//markers[0] = {'point':geoHome, 'title':'Americas Best Value Inn Sandusky', 'color':'red', 'opened':true};
	markers[1] = {'point':geoAllAmericanInnSuitesNorwalk,'title':'All American Inn Suites Norwalk', 'url':'inn-suites-norwalk.html', 'color':'red','zoom':14};
	markers[2] = {'point':geoBellevueHotelsSuites,'title':'Bellevue Hotels &amp; Suites','url':'bellevue-ohio-hotels.html','color':'red','zoom':14};
	markers[3] = {'point':geoBestBudgetInnSandusky,'title':'Best Budget Inn Sandusky','url':'put-in-bay-hotels.html','color':'red','zoom':14};
	markers[4] = {'point':geoBestWesternNorwalk, 'title':'Best Western Norwalk', 'url':'norwalk-ohio-hotels.html', 'color':'red', 'zoom':14};
	markers[5] = {'point':geoComfortInnMaingateSandusky,'title':'Comfort Inn Maingate Sandusky','url':'ohio-family-hotels.html','color':'red','zoom':15};
	markers[6] = {'point':geoComfortInnMilan,'title':'Comfort Inn Milan','url':'milan-ohio-hotels.html','color':'red','zoom':15};
	markers[7] = {'point':geoComfortInnSandusky,'title':'Comfort Inn Sandusky','url':'sandusky-ohio-vacations.html','color':'red','zoom':15};
	markers[8] = {'point':geoComfortSuitesSandusky,'title':'Comfort Suites Sandusky','url':'hotels-lake-erie.html','color':'red','zoom':15};
	markers[9] = {'point':geoHolidayInnExpressPortClinton,'title':'Holiday Inn Express Port Clinton','url':'port-clinton-hotels.html','color':'red','zoom':15};
	markers[10] = {'point':geoRodewayInnSandusky,'title':'Rodeway Inn Sandusky','url':'hotels-cedar-point.html','color':'red','zoom':15};
	markers[11] = {'point':geoTravelodgeSandusky,'title':'Travelodge Sandusky','url':'lake-erie-hotels.html','color':'red','zoom':15};
	markers[12] = {'point':geoCedar,'htmlOnly':'<h3 style="margin:0; padding:0;">Cedar Point</h3>','color':'yellow','opened':false};
	

	function init() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById('map'));
			map.setCenter(geoCenter, zoomInitial);
			map.addControl(new GLargeMapControl());
			map.addControl(new GScaleControl(100));
			map.addControl(new GOverviewMapControl());
			map.enableContinuousZoom();
			for (var i=0,j=markers.length;i<j;i++) {
				createMarker(markers[i]);
			}
			//map.addOverlay(polyline);
		}
		else {
			alert("Sorry, but your browser does not support the Google Maps API.");
		}
	}
	
	function createMarker(pt) {
		var html = pt['htmlOnly'] || '';
		var zoom = pt['zoom'] || 13;
		var icon = new GIcon(baseIcon);
		icon.image = 'images/icons/map/marker-'+pt['color']+'.png';
		var marker = new GMarker(pt['point'],icon);
		GEvent.addListener(marker, 'click', function() {
			if (pt['htmlOnly']) {
				marker.openInfoWindowHtml(pt['htmlOnly']);
			}
			else {
				var html = '<h3>'+pt['title']+'</h3>';
				if (pt['url']) {
					html += '<p style="margin-bottom:0;"><a href="'+pt['url']+'">Visit Website</a></p>';
				}
				marker.openInfoWindowHtml(html, {maxHeight:240} );
				
			}
		});
		map.addOverlay(marker,icon);
		if (pt['opened']) marker.openInfoWindowHtml(html);
		return marker;
	}

	//]]>