$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a.fancybox").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	$("a.group").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		false
	});

    if (GBrowserIsCompatible()) { // if the browser is compatible with Google Map's
		var map = new GMap2(document.getElementById("myMap")) // get div element and create new instance of GMap2 class

		var center = new GLatLng(53.572097, 9.892829); // pass in latitude and longitude
	    map.setCenter(center, 13); // pass in zoom level

	    var marker = new GMarker(center);
	
        map.addControl(new GSmallMapControl()); // creates the zoom feature
	    map.addControl(new GMapTypeControl()); // switch map modes
	    map.removeMapType(G_HYBRID_MAP); // remove hybrid control 

		map.addOverlay(marker); // show marker on map
    }
    else {
        alert("Bitte upgraden Sie Ihren Browser!");
    }
});
