


google.load("maps", "2.x");

var map;

function setTopTen(pName, lat, lng, cityFolderName, itemPhone, itemTollFree, itemURL)
{			
    var point = new GLatLng(lat, lng);
    
    var icon = new GIcon();
    icon.image = "/!img/body/sub_map_icon_top_ten.png";
    icon.shadow = "";
    icon.iconSize = new GSize(15, 15);
    icon.shadowSize = new GSize(15, 15);
    icon.iconAnchor = new GPoint(7, 7);
    icon.infoWindowAnchor = new GPoint(7, 1); 
    
    var marker = new GMarker(point, icon);

    map.addOverlay(marker);
    var itemLink = "<b><a href='/destination/" + cityFolderName + "/'>" + pName + "</a></b><br />"  + itemPhone + itemTollFree + itemURL;
    GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(itemLink); });
    return marker; 
}

function setEPick(pName, lat, lng, cityFolderName, itemPhone, itemTollFree, itemURL)
{			
    var point = new GLatLng(lat, lng);
    
    var icon = new GIcon();
    icon.image = "/!img/body/sub_map_icon_editors_pick.png";
    icon.shadow = "";
    icon.iconSize = new GSize(15, 15);
    icon.shadowSize = new GSize(15, 15);
    icon.iconAnchor = new GPoint(7, 7);
    icon.infoWindowAnchor = new GPoint(7, 1); 

    var marker = new GMarker(point, icon);

    map.addOverlay(marker);
    var itemLink = "<b><a href='/destination/" + cityFolderName + "/'>" + pName + "</a></b><br />"  + itemPhone + itemTollFree + itemURL;
    GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(itemLink); });
    return marker; 
}

function LoadMap()
{
    map = new GMap2(document.getElementById("googleMap"), { size: new GSize(342,250) });
    map.addControl( new GSmallZoomControl());
    map.addControl( new GMenuMapTypeControl()); 

    var startPoint = new GLatLng(37.0625,-95.677068);
    map.setCenter(startPoint, 3);

    
            
            setTopTen("Willowbrook, IL", "41.742901", "-87.934676", "Willowbrook", "", "", "<br /><a href='http://www.dupagecvb.com/' target='_blank'>Website</a>");
            
        
            
            setTopTen("San Francisco, CA", "37.775196", "-122.419204", "SanFrancisco", "<br /><b>Phone:</b> 415-391-2000", "", "<br /><a href='http://www.onlyinsanfrancisco.com' target='_blank'>Website</a>");
            
        
            
            setTopTen("Cheyenne, WY", "41.141842", "-104.779188", "Cheyenne", "", "<br /><b>Toll Free:</b> 800-426-5009", "<br /><a href='http://www.cheyenne.org' target='_blank'>Website</a>");
            
        
            
            setTopTen("Pierre, SD", "44.567083", "-100.267233", "Pierre", "<br /><b>Phone:</b> 605-224-7361 ", "<br /><b>Toll Free:</b> 800-962-2034", "<br /><a href='http://www.pierre.org' target='_blank'>Website</a>");
            
        
            
            setTopTen("Fort Smith, AR", "35.384824", "-94.421633", "FortSmith", "<br /><b>Phone:</b> 479-783-8888", "<br /><b>Toll Free:</b> 800-637-1477 ", "<br /><a href='http://www.fortsmith.org' target='_blank'>Website</a>");
            
        
            
            setTopTen("Lake of the Ozarks, MO", "38.121778", "-92.671313", "LakeoftheOzarks", "", "<br /><b>Toll Free:</b> 800-FUN-LAKE", "<br /><a href='http://www.funlake.com/sunset' target='_blank'>Website</a>");
            
        
            
            setTopTen("Catskills, NY", "42.230666", "-73.943458", "Catskills", "", "<br /><b>Toll Free:</b> 800 NYS CATS", "<br /><a href='http://www.VisitTheCatskills.com' target='_blank'>Website</a>");
            
        
            
            setTopTen("Waxahachie, TX", "32.322465", "-96.780605", "Waxahachie", "<br /><b>Phone:</b> 972-937-2390  ", "", "<br /><a href='http://www.waxahachiechamber.com' target='_blank'>Website</a>");
            
        
            
            setTopTen("Shenandoah Valley, VA", "38.652788", "-78.645547", "ShenandoahValley", "", "<br /><b>Toll Free:</b> 800-VISIT-SV ", "<br /><a href='http://www.visitshenandoah.org' target='_blank'>Website</a>");
            
        
            
            setTopTen("Columbia, SC", "34.000688", "-81.035303", "Columbia_SC", "<br /><b>Phone:</b> (803) 545-0000", "<br /><b>Toll Free:</b> 1-800-264-4884", "<br /><a href='http://www.columbiacvb.com/' target='_blank'>Website</a>");
            
        
    
    
            
            setEPick("Indianapolis, IN", "39.767016", "-86.156255", "Indianapolis", "<br /><b>Phone:</b> 317-639-4282", "", "<br /><a href='http://www.indy.org ' target='_blank'>Website</a>");
            
        

}

google.setOnLoadCallback(LoadMap);
