/**
* UKL
* JavaScript Google Maps
*/

window.addEvent('domready', function() {
	APP_GMAP.setup($('google_map_one'), {
		'enableMapTypeControl'   : true,
		'centerMap'              : [51.3315254, 12.3866097],
		'zoomLevel'              : 15,
		'msgBrowserNotCompatible': 'Ihr Browser unterstützt nicht die Google Maps API Bibliothek'
	});
	APP_GMAP.addIcons([
		{
			'typ'       : 'one',
			'src'       : 'http://ck1.uniklinikum-leipzig.de/img_klinik/icon_google_map.gif',
			'size'      : [23,19],
			'offset'    : [7,8],
			'infoOffset': [7,8]
		}
	]);
	APP_GMAP.addMarkers([
		{
			'icon' : 'one',
			'lat'  : '51.3315254',
			'lng'  : '12.3866097',
			'html' : '<h1>Chirurgische Klinik II</h1><strong>Visceral-, Transplantations-,<br>Thorax- und Gef&auml;&szlig;chirurgie</strong><br><br>Liebigstr. 20<br>04103 Leipzig',
			'title': ''
		}
	]);

});

window.addEvent('unload', function() {
	GUnload();
});
