google.load("maps", "2.x");
 
// Call this function when the page has been loaded
function initialize() {
	var map = new google.maps.Map2(document.getElementById("map"));
	map.setCenter(new google.maps.LatLng(43.77797310669748, -79.35639381408691), 16);
	map.setUIToDefault();
 
	var theChurch = new GMarker(new GLatLng(46.642615816964636, 27.73425579071045));
	map.addOverlay(theChurch);
 
	GEvent.addListener(theChurch, 'click', function() {
		// When clicked, open an Info Window
		theChurch.openInfoWindowHtml('<br/><img src="files/a_sc5vs.jpg" width="160" hspace="10" height="214" border="1" align="left"/><b>Scoala "Stefan cel Mare" nr. 5 Vaslui</b><br/><br/>Adresa:<br/>b-dul. Constantin Prezan nr. 2,<br/>Vaslui, cod 730038, Romania<br/><br/>Telefon:<br/>+40 335 416170<br/><br/>Fax:<br/>+40 335 417379<br/><br/>E-mail:<br/><a href="mailto:scoala5vs@gmail.com">scoala5vs@gmail.com</a><br/><br/>Web:<br/><a href="http://sc5vs.scoli.edu.ro" target="_parent">http://sc5vs.scoli.edu.ro</a>');
	});
	
	GEvent.trigger(theChurch, "click"); 
}
 
google.setOnLoadCallback(initialize);
