google.load("maps", "2.x");

// Main method to generate the map on page load	
function initialize() {
	// Check to see if browser supports Google Maps
	if (GBrowserIsCompatible()) {

	// Create new map object & set the center point and initial zoom level
	var map = new GMap2(document.getElementById("map_canvas"));
	map.setCenter(new GLatLng(46.229134, 6.07029), 12);
	map.setUIToDefault();
	
	// Creating a new marker 
	// St-Genis pitch
	var marker = new GMarker(new GLatLng(46.239531, 6.036515))  
	// Adding a click-event to the marker  
	GEvent.addListener(marker, "click", function() {  
	// When clicked, open an Info Window  
    map.openInfoWindowHtml(new GLatLng(46.239531, 6.036515), "<strong>Seniors I & II</strong><br />Route de Meyrin<br />FR-01630 Saint-Genis-Pouilly<br /><br />Tuesdays & thursdays from 19:00");
	});  
	// Add marker to map  
	map.addOverlay(marker); 
	
	// Creating a new marker 
	// Meyrin pitch
	var marker = new GMarker(new GLatLng(46.232047, 6.067339))  
	// Adding a click-event to the marker  
	GEvent.addListener(marker, "click", function() {  
	
	// Create an array that will hold the tabs  
	var tabs = [];  
	// Create tabs and add them to the array  
	tabs.push(new GInfoWindowTab('WILDCATS', '<strong>Rugby for women</strong><br />Complexe sportif de Meyrin<br />Avenue Louis-Rendu 7<br />CH-1217 Meyrin<br /><br />Tuesdays & thursdays from 19:00'));  
	tabs.push(new GInfoWindowTab('ECOLE', '<strong>Ecole de rugby de 3 &agrave; 18 ans</strong><br />Complexe sportif de Meyrin<br />Avenue Louis-Rendu 7<br />CH-1217 Meyrin<br /><br />Les mardis et jeudis &agrave; partir de 18:00'));  
	// Add tabs to the InfowWindow  
	marker.openInfoWindowTabsHtml(tabs);  
	});  
	// Add marker to map  
	map.addOverlay(marker); 
	} 
}

google.setOnLoadCallback(initialize);
