function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById('gmaps'));
		var local = new GLatLng(53.0243967, 18.6874712);
		var marker = new GMarker(local);
		
		var text = '<p>Ośrodek szkolenia kierowców</p><p><strong>AUTO-PLUS</strong></p>'+
		'<p>ul. Ligi Polskiej 12D</p>'+
		'<p>87-100 Toruń</p>'+
		'<p><strong>tel. (0-56) 477 99 29</strong></p>';
		
		map.setCenter(local, 15);

		map.addOverlay(marker);

		map.setUIToDefault();
		
		GEvent.addListener(marker,"click",function() {  
			marker.openInfoWindowHtml(text);  
		});
	}
}

function initialize_map() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById('gmaps_big'));
		var local = new GLatLng(53.0243967, 18.6874712);
		map.setCenter(local, 15);
		map.setUIToDefault();
		
		var icon = new GIcon();  
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";  
		icon.iconSize = new GSize(20, 34);  
		icon.shadowSize = new GSize(37, 34);  
		icon.iconAnchor = new GPoint(6, 20);  
		icon.infoWindowAnchor = new GPoint(5, 1);  
		
		var text = '<p>Ośrodek szkolenia kierowców</p><p><strong>AUTO-PLUS</strong></p>'+
		'<p>ul. Ligi Polskiej 12D</p>'+
		'<p>87-100 Toruń</p>'+
		'<p><strong>tel. (0-56) 477 99 29</strong></p>';
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerA.png';
		var marker = new GMarker(local, icon);
		map.addOverlay(marker);
		marker.openInfoWindowHtml(text);
		
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerB.png';
		map.addOverlay(new GMarker(new GLatLng(53.0238412751801, 18.687545657157898), icon));
		
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerD.png';
		map.addOverlay(new GMarker(new GLatLng(53.02262160148171, 18.68847906589508), icon));
		
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerC.png';
		map.addOverlay(new GMarker(new GLatLng(53.02360250579501, 18.689112067222595), icon));
		
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerE.png';
		map.addOverlay(new GMarker(new GLatLng(53.0225118936915, 18.691418766975403), icon));
		
		icon.image = 'http://www.google.com/intl/en_ALL/mapfiles/markerF.png';
		map.addOverlay(new GMarker(new GLatLng(53.02320240278165, 18.677149415016174), icon));
		
	}
}
