
jQuery(document).ready(function() {
    var latlng = new google.maps.LatLng(39, -135);
    var myOptions = {
        zoom:      2,
        center:    latlng,
        mapTypeId: google.maps.MapTypeId.TERRAIN
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    var olympia = new google.maps.Marker({  
        position: new google.maps.LatLng(47.45, -122.30),  
        map:      map,  
        title:    'Olympia, Washington'  
    });
    var newyork = new google.maps.Marker({  
        position: new google.maps.LatLng(40.7698473, -73.9943251),  
        map:      map,  
        title:    'New York, New York'  
    }); 
    var honolulu = new google.maps.Marker({  
        position: new google.maps.LatLng(21.18, -157.50),  
        map:      map,  
        title:    'Honolulu, Hawaii'  
    }); 
    var cincinnati = new google.maps.Marker({  
        position: new google.maps.LatLng(39.100403621176454, -84.52674865722656),  
        map:      map,  
        title:    'Cincinnati, Ohio'  
    }); 
    var sanfrancisco = new google.maps.Marker({  
        position: new google.maps.LatLng(37.47, -122.26),  
        map:      map,  
        title:    'San Francisco, California'  
    }); 
    
    google.maps.event.addListener(olympia, 'click', function() {  
        jQuery("#default").addClass("hide");       
        jQuery("#map-content-honolulu").removeClass("show");
        jQuery("#map-content-newyork").removeClass("show");
        jQuery("#map-content-cincinnati").removeClass("show");
        jQuery("#map-content-sanfrancisco").removeClass("show");
        jQuery("#map-content-olympia").addClass("show");
        jQuery("#map-content-olympia2").addClass("show");
        jQuery("#map-content-cincinnati2").removeClass("show");
        jQuery("#map-content-newyork2").removeClass("show");
        jQuery("#map-content-honolulu2").removeClass("show");
        jQuery("#map-content-sanfrancisco2").removeClass("show");
    });
    
    google.maps.event.addListener(newyork, 'click', function() {  
        jQuery("#default").addClass("hide");
        jQuery("#map-content-honolulu").removeClass("show");
        jQuery("#map-content-cincinnati").removeClass("show");
        jQuery("#map-content-sanfrancisco").removeClass("show");
        jQuery("#map-content-olympia").removeClass("show");
        jQuery("#map-content-newyork").addClass("show");
        jQuery("#map-content-olympia2").removeClass("show");
        jQuery("#map-content-cincinnati2").removeClass("show");
        jQuery("#map-content-newyork2").addClass("show");
        jQuery("#map-content-honolulu2").removeClass("show");
        jQuery("#map-content-sanfrancisco2").removeClass("show");
    });
    
    google.maps.event.addListener(honolulu, 'click', function() {
        jQuery("#default").addClass("hide");  
        jQuery("#map-content-newyork").removeClass("show");
        jQuery("#map-content-cincinnati").removeClass("show");
        jQuery("#map-content-sanfrancisco").removeClass("show");
        jQuery("#map-content-olympia").removeClass("show");  
        jQuery("#map-content-honolulu").addClass("show");
        jQuery("#map-content-olympia2").removeClass("show");
        jQuery("#map-content-cincinnati2").removeClass("show");
        jQuery("#map-content-newyork2").removeClass("show");
        jQuery("#map-content-honolulu2").addClass("show");
        jQuery("#map-content-sanfrancisco2").removeClass("show");
    });
    
    google.maps.event.addListener(cincinnati, 'click', function() {  
        jQuery("#default").addClass("hide");
        jQuery("#map-content-honolulu").removeClass("show");
        jQuery("#map-content-newyork").removeClass("show");
        jQuery("#map-content-sanfrancisco").removeClass("show");
        jQuery("#map-content-olympia").removeClass("show");
        jQuery("#map-content-cincinnati").addClass("show");
        jQuery("#map-content-olympia2").removeClass("show");
        jQuery("#map-content-cincinnati2").addClass("show");
        jQuery("#map-content-newyork2").removeClass("show");
        jQuery("#map-content-honolulu2").removeClass("show");
        jQuery("#map-content-sanfrancisco2").removeClass("show");
    });
    
    google.maps.event.addListener(sanfrancisco, 'click', function() {  
        jQuery("#default").addClass("hide");
        jQuery("#map-content-honolulu").removeClass("show");
        jQuery("#map-content-newyork").removeClass("show");
        jQuery("#map-content-cincinnati").removeClass("show");
        jQuery("#map-content-olympia").removeClass("show");
        jQuery("#map-content-sanfrancisco").addClass("show");
        jQuery("#map-content-olympia2").removeClass("show");
        jQuery("#map-content-cincinnati2").removeClass("show");
        jQuery("#map-content-newyork2").removeClass("show");
        jQuery("#map-content-honolulu2").removeClass("show");
        jQuery("#map-content-sanfrancisco2").addClass("show");
    });

});

