$(document).ready(function(){
    
    $('#slideshow').cycle({
    	fx: 'fade',
    	speed: 2500,
    	timeout: 4500,
    	random: true	
    });
    
    
    var latlng = new google.maps.LatLng(37.705276, -97.249729 );
    var myOptions = {
      zoom: 15,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"), /*map_canvas is the div where the map will go and need dimensions set*/
        myOptions);

  	var contentString = '<div id="map_infowindow">'+
    '<div id="siteNotice">'+
    '</div>'+
    '<h2>Junior League of Wichita</h1>'+
    '<div id="bodyContent">'+
    '<p>6402 E. 12th<br />Wichita, KS 67206-1306<br />(316) 682-7473</p>'+
    '</div>'+
    '</div>';

var infowindow = new google.maps.InfoWindow({
    content: contentString
});
  	
  	var marker = new google.maps.Marker({
      position: latlng,
      map: map,
      title:"Junior League of Wichita, Inc."  
 	 });
 	 
 	 
 	 google.maps.event.addListener(marker, 'click', function() {
		infowindow.open(map,marker);
	});
 	 
 	 marker.setMap(map);


}); 
