function load_airportmap() 
   {
      if (GBrowserIsCompatible()) 
	{
        // create the map
        var map = new GMap2(document.getElementById("map"));

	// add the map controls
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl());
	//map.addControl(new GOverviewMapControl(new GSize(125,125))); 
	map.enableDoubleClickZoom();

	// set map pos' and zoom level
	var mapCenter = new GLatLng(28.53499264511823, -81.38354301452637); 
	map.setCenter(mapCenter, 10);

        /* create 1st marker */
	var point = new GLatLng(28.323385, -81.659113); 
  
	// change the default icon to our BB flag
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'BB Flag Icon small.png';
	//iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(54,78);
	//iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(18,69);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable:false, bouncy: false, title:"Bahama Bay Resort"};   

	var marker = new  GMarker(point,options);
	//GEvent.addListener(marker, "mouseover", function() { handleMarkerClick(marker, "Bahama Bay Resort") } );
	map.addOverlay(marker); 

	/* create 2nd marker */
	var point2 = new GLatLng(28.4246, -81.3002); 
	
	// change the default icon to a small red one
 	var iconRed = new GIcon(); 
	iconRed.image = 'http://labs.google.com/ridefinder/images/mm_20_red.png';
	iconRed.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconRed.iconSize = new GSize(12, 20);
	iconRed.shadowSize = new GSize(22, 20);
	iconRed.iconAnchor = new GPoint(6,20);
	iconRed.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconRed,draggable: false,bouncy: false, title:"Orlando International Airport"};     

	var marker2 = new  GMarker(point2,options);
	//GEvent.addListener(marker2, "click", function() { handleMarkerClick(marker2, "Orlando International Airport") } );
	map.addOverlay(marker2);
	
	/* create 3rd marker */
	var point3 = new GLatLng(28.7816, -81.2380); 
	
	// change the default icon to a small red one
 	var iconRed = new GIcon(); 
	iconRed.image = 'http://labs.google.com/ridefinder/images/mm_20_red.png';
	iconRed.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconRed.iconSize = new GSize(12, 20);
	iconRed.shadowSize = new GSize(22, 20);
	iconRed.iconAnchor = new GPoint(6,20);
	iconRed.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconRed,draggable: false,bouncy: false, title:"Sanford Airport"};   

	var marker3 = new  GMarker(point3,options);
	//GEvent.addListener(marker3, "click", function() { handleMarkerClick(marker3, "Sanford Airport") } );
	map.addOverlay(marker3);
        }
    }

function load_parksmap() 
   {
      if (GBrowserIsCompatible()) 
	{
        // create the map
        var map = new GMap2(document.getElementById("map"));

	// add the map controls
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl());
	//map.addControl(new GOverviewMapControl(new GSize(125,125))); 
	map.enableDoubleClickZoom();

	// set map pos' and zoom level
	var mapCenter = new GLatLng(28.36980579230706, -81.55945373535156); 
	map.setCenter(mapCenter, 12);

        /* create 1st marker */
	var point = new GLatLng(28.323385, -81.659113); 
  
	// change the default icon to our BB flag
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'BB Flag Icon small.png';
	//iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(54,78);
	//iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(18,69);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable:false, bouncy: false, title:"Bahama Bay Resort"};   

	var marker = new  GMarker(point,options);
	//GEvent.addListener(marker, "mouseover", function() { handleMarkerClick(marker, "Bahama Bay Resort") } );
	map.addOverlay(marker); 

	/* create 2nd marker Disney Animal Kingdom*/
	var point2 = new GLatLng(28.357643388829586, -81.59056663513183); 
	
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney Animal Kingdom"};   

	var marker2 = new  GMarker(point2,options);
	//GEvent.addListener(marker2, "click", function() { handleMarkerClick(marker2, "Disney Animal Kingdom") } );
	map.addOverlay(marker2);

	/* create 3rd marker Disney Blizzard Beach Water Park*/
	var point3 = new GLatLng(28.3545465726189, -81.573486328125); 
	
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney Blizzard Beach Water Park"};   

	var marker3 = new  GMarker(point3,options);
	//GEvent.addListener(marker3, "click", function() { handleMarkerClick(marker3, "Disney Blizzard Beach Water Park") } );
	map.addOverlay(marker3);

	/* create 4th marker Disney MGM Studios*/
	var point4 = new GLatLng(28.357869981590788, -81.56147003173828); 
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney MGM Studios"};   

	var marker4 = new  GMarker(point4,options);
	//GEvent.addListener(marker4, "click", function() { handleMarkerClick(marker4, "Disney MGM Studios") } );
	map.addOverlay(marker4);

	/* create 5th marker Disney Epcot Centre*/
	var point5 = new GLatLng(28.37380579230706, -81.54945373535156); 
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney Epcot Centre"};   

	var marker5 = new  GMarker(point5,options);
	//GEvent.addListener(marker5, "click", function() { handleMarkerClick(marker5, "Disney Epcot Centre") } );
	map.addOverlay(marker5);

	/* create 6th marker Disney Magic Kingdom*/
	var point6 = new GLatLng(28.41895683608468, -81.58181190490722); 
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney Magic Kingdom"};   

	var marker6 = new  GMarker(point6,options);
	//GEvent.addListener(marker6, "click", function() { handleMarkerClick(marker6, "Disney Magic Kingdom") } );
	map.addOverlay(marker6);

	/* create 7th marker Disney Typhoon Lagoon Water Park*/
	var point7 = new GLatLng(28.364969643083775, -81.52585029602051); 
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Disney Typhoon Lagoon Water Park"};   

	var marker7 = new  GMarker(point7,options);
	//GEvent.addListener(marker7, "click", function() { handleMarkerClick(marker7, "Disney Typhoon Lagoon Water Park") } );
	map.addOverlay(marker7);

	/* create 8th marker Sea World*/
	var point8 = new GLatLng(28.40989796881188, -81.46190643310547); 
	// change the default icon to a small green one
 	var iconGreen = new GIcon(); 
	iconGreen.image = 'http://labs.google.com/ridefinder/images/mm_20_green.png';
	iconGreen.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconGreen.iconSize = new GSize(12, 20);
	iconGreen.shadowSize = new GSize(22, 20);
	iconGreen.iconAnchor = new GPoint(6,20);
	iconGreen.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconGreen,draggable: false,bouncy: false, title:"Sea World"};   

	var marker8 = new  GMarker(point8,options);
	//GEvent.addListener(marker8, "click", function() { handleMarkerClick(marker8, "Sea World") } );
	map.addOverlay(marker8);

        }
    }

function load_mallsmap() 
   {
      if (GBrowserIsCompatible()) 
	{

        // create the map
        var map = new GMap2(document.getElementById("map"));

	// add the map controls
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl());
	//map.addControl(new GOverviewMapControl(new GSize(125,125))); 
	map.enableDoubleClickZoom();

	// set map pos' and zoom level
	var mapCenter = new GLatLng(28.387398430924175, -81.49246215820312); 
	map.setCenter(mapCenter, 10);

        /* create 1st marker */
	var point = new GLatLng(28.323385, -81.659113); 
  
	// change the default icon to our BB flag
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'BB Flag Icon small.png';
	//iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(54,78);
	//iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(18,69);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable:false, bouncy: false, title:"Bahama Bay Resort"};   

	var marker = new  GMarker(point,options);
	//GEvent.addListener(marker, "mouseover", function() { handleMarkerClick(marker, "Bahama Bay Resort") } );
	map.addOverlay(marker); 

	/* create 2nd marker Orlando Premium Outlet Mall*/
	var point2 = new GLatLng(28.387398430924175, -81.49246215820312); 
	
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"Orlando Premium Outlet Mall"};   

	var marker2 = new  GMarker(point2,options);
	//GEvent.addListener(marker2, "click", function() { handleMarkerClick(marker2, "Orlando Premium Outlet Mall") } );
	map.addOverlay(marker2);

	/* create 3rd marker Florida Mall*/
	var point3 = new GLatLng(28.44522316813481, -81.39427185058594); 
	
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"Florida Mall"};   

	var marker3 = new  GMarker(point3,options);
	//GEvent.addListener(marker3, "click", function() { handleMarkerClick(marker3, "Florida Mall") } );
	map.addOverlay(marker3);

	/* create 4th marker Belz Factory Outlet Mall*/
	var point4 = new GLatLng(28.47412369059679, -81.45023345947265); 
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"Belz Factory Outlet Mall"};   

	var marker4 = new  GMarker(point4,options);
	//GEvent.addListener(marker4, "click", function() { handleMarkerClick(marker4, "Belz Factory Outlet Mall") } );
	map.addOverlay(marker4);

	/* create 5th marker The Mall at Millenia*/
	var point5 = new GLatLng(28.485515719159682, -81.43126487731933); 
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"The Mall at Millenia"};   

	var marker5 = new  GMarker(point5,options);
	//GEvent.addListener(marker5, "click", function() { handleMarkerClick(marker5, "The Mall at Millenia") } );
	map.addOverlay(marker5);

	/* create 6th marker The Loop*/
	var point6 = new GLatLng(28.345104502273472, -81.42208099365234); 
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"The Loop"};   

	var marker6 = new  GMarker(point6,options);
	//GEvent.addListener(marker6, "click", function() { handleMarkerClick(marker6, "The Loop") } );
	map.addOverlay(marker6);

/* create 7th marker Posner Park*/
	var point7 = new GLatLng(28.226648637362082, -81.64454340934753); 
	// change the default icon to a small blue one
 	var iconBlue = new GIcon(); 
	iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png';
	iconBlue.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconBlue.iconSize = new GSize(12, 20);
	iconBlue.shadowSize = new GSize(22, 20);
	iconBlue.iconAnchor = new GPoint(6,20);
	iconBlue.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconBlue,draggable: false,bouncy: false, title:"Posner Park"};   

	var marker7 = new  GMarker(point7,options);
	//GEvent.addListener(marker7, "click", function() { handleMarkerClick(marker7, "Posner Park") } );
	map.addOverlay(marker7);




        }
    }

function load_localmap() 
   {
      if (GBrowserIsCompatible()) 
	{

        // create the map
        var map = new GMap2(document.getElementById("map"));

	// add the map controls
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.addControl(new GScaleControl());
	//map.addControl(new GOverviewMapControl(new GSize(125,125))); 
	map.enableDoubleClickZoom();

	// set map pos' and zoom level
	var mapCenter = new GLatLng(28.301740, -81.6321057); 
	map.setCenter(mapCenter, 12);

        /* create 1st marker */
	var point = new GLatLng(28.323385, -81.659113); 
  
	// change the default icon to our BB flag
 	var iconOrange = new GIcon(); 
	iconOrange.image = 'BB Flag Icon small.png';
	//iconOrange.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconOrange.iconSize = new GSize(54,78);
	//iconOrange.shadowSize = new GSize(22, 20);
	iconOrange.iconAnchor = new GPoint(18,69);
	iconOrange.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconOrange,draggable:false, bouncy: false, title:"Bahama Bay Resort"};   

	var marker = new  GMarker(point,options);
	//GEvent.addListener(marker, "mouseover", function() { handleMarkerClick(marker, "Bahama Bay Resort") } );
	map.addOverlay(marker); 

	/* create 2nd marker Publix on the US27*/
	var point2 = new GLatLng(28.311257, -81.669949); 
	
	// change the default icon to a small orange one
 	var iconOrange = new GIcon(); 
	iconOrange.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconOrange.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconOrange.iconSize = new GSize(12, 20);
	iconOrange.shadowSize = new GSize(22, 20);
	iconOrange.iconAnchor = new GPoint(6,20);
	iconOrange.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconOrange,draggable: false,bouncy: false, title:"Publix on the US27"};   

	var marker2 = new  GMarker(point2,options);
	//GEvent.addListener(marker2, "click", function() { handleMarkerClick(marker2, "Publix on the US27") } );
	map.addOverlay(marker2);

	/* create 3rd marker Appleby's Restaurant on the US27*/
	var point3 = new GLatLng(28.312740, -81.668941); 
	
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Appleby's Restaurant on the US27"};   

	var marker3 = new  GMarker(point3,options);
	//GEvent.addListener(marker3, "click", function() { handleMarkerClick(marker3, "Appleby's Restaurant on the US27") } );
	map.addOverlay(marker3);

	/* create 4th marker Walmarts on the US27*/
	var point4 = new GLatLng(28.355094186938192, -81.6726636886597); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Walmarts on the US27"};   

	var marker4 = new  GMarker(point4,options);
	//GEvent.addListener(marker4, "click", function() { handleMarkerClick(marker4, "Walmarts on the US27") } );
	map.addOverlay(marker4);

	/* create 5th marker Chilis Restaurant on the US27*/
	var point5 = new GLatLng(28.371020974264713, -81.68281853199005); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Chilis Restaurant on the US27"};   

	var marker5 = new  GMarker(point5,options);
	//GEvent.addListener(marker5, "click", function() { handleMarkerClick(marker5, "Chilis Restaurant on the US27") } );
	map.addOverlay(marker5);

	/* create 6th marker Wendy's on the US27*/
	var point6 = new GLatLng(28.367211791215677, -81.68137550354004); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Wendy's on the US27"};   

	var marker6 = new  GMarker(point6,options);
	//GEvent.addListener(marker6, "click", function() { handleMarkerClick(marker6, "Wendy's on the US27") } );
	map.addOverlay(marker6);

/* create 7th marker Nearest Publix on 192*/
	var point7 = new GLatLng(28.348579281791608, -81.6658079624176); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Nearest Publix on 192, Town Center Blvd, Citrus Ridge, FL 34711"};   

	var marker7 = new  GMarker(point7,options);
	//GEvent.addListener(marker7, "click", function() { handleMarkerClick(marker7, "Nearest Publix on 192") } );
	map.addOverlay(marker7);

/* create 8th marker Publix at Orange Lake on 192*/
	var point8 = new GLatLng(28.34924967453892, -81.61434173583986); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Publix at Orange Lake on 192"};   

	var marker8 = new  GMarker(point8,options);
	//GEvent.addListener(marker8, "click", function() { handleMarkerClick(marker8, "Publix at Orange Lake on 192") } );
	map.addOverlay(marker8);

/* create 9th marker Hoolahans*/
	var point9 = new GLatLng(28.34612900750969, -81.62819802761076); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Hoolahans, W Irlo Bronson Memorial Hwy (192), Citrus Ridge, FL 34747 "};   

	var marker9 = new  GMarker(point9,options);
	//GEvent.addListener(marker9, "click", function() { handleMarkerClick(marker9, "Hoolahans") } );
	map.addOverlay(marker9);

/* create 10th marker Domino's Pizza*/
	var point10 = new GLatLng(28.34759729040922, -81.63255393505098); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Domino's Pizza, Vista del Lago Blvd, Citrus Ridge, FL 34787"};   

	var marker10 = new  GMarker(point10,options);
	//GEvent.addListener(marker10, "click", function() { handleMarkerClick(marker10, "Domino's Pizza") } );
	map.addOverlay(marker10);

/* create 11th marker Target at Posner Park*/
	var point11 = new GLatLng(28.226648637362082, -81.64454340934753); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Target at Posner Park"};   

	var marker11 = new  GMarker(point11,options);
	//GEvent.addListener(marker11, "click", function() { handleMarkerClick(marker11, "Target at Posner Park") } );
	map.addOverlay(marker11);

/* create 12th marker Books a Million at Posner Park*/
	var point12 = new GLatLng(28.227565574538033, -81.64501547813417); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Books a Million at Posner Park"};   

	var marker12 = new  GMarker(point12,options);
	//GEvent.addListener(marker12, "click", function() { handleMarkerClick(marker12, "Books a Million at Posner Park") } );
	map.addOverlay(marker12);

/* create 13th marker Walgreens on US27*/
	var point13 = new GLatLng(28.254947169772606, -81.65775060653688); 
	// change the default icon to a small yellow one
 	var iconYellow = new GIcon(); 
	iconYellow.image = 'http://labs.google.com/ridefinder/images/mm_20_yellow.png';
	iconYellow.shadow = 'http://labs.google.com/ridefinder/images/mm_20_shadow.png';
	iconYellow.iconSize = new GSize(12, 20);
	iconYellow.shadowSize = new GSize(22, 20);
	iconYellow.iconAnchor = new GPoint(6,20);
	iconYellow.infoWindowAnchor = new GPoint(5, 1);
	var options = { icon: iconYellow,draggable: false,bouncy: false, title:"Walgreens on US 27"};   

	var marker13 = new  GMarker(point13,options);
	//GEvent.addListener(marker13, "click", function() { handleMarkerClick(marker13, "Walgreens on US27") } );
	map.addOverlay(marker13);

        }
    }

// function to handle marker clicks
function handleMarkerClick(marker, html)
 {
 marker.openInfoWindowHtml(html);
 }