var checker = false;
var map;
var geocoder;
var sachsen;
var icon_beratung;
function initialize() {
	geocoder = new google.maps.Geocoder();
	var latlng = new google.maps.LatLng(50.95,13.45);
	var myOptions = {zoom: 8,
			 center: latlng,
			 mapTypeId: google.maps.MapTypeId.ROADMAP,
			 mapTypeControl: true,
			 mapTypeControlOptions: {
			    style: google.maps.MapTypeControlStyle.DROPDOWN_MENU,
			    position: google.maps.ControlPosition.TOP_RIGHT,
			    mapTypeIds: new Array(google.maps.MapTypeId.ROADMAP,google.maps.MapTypeId.SATELLITE,google.maps.MapTypeId.HYBRID)
			 },
			 scaleControl: false,
			 navigationControl: true,
			 navigationControlOptions: {
			    style: google.maps.NavigationControlStyle.SMALL,
			    position: google.maps.ControlPosition.TOP_LEFT
			 },
			 scrollwheel: false
			};
	map = new google.maps.Map($("map_canvas"), myOptions);
        sachsen = new google.maps.KmlLayer("http://www.bildungsmarkt-sachsen.de/kmz/sachsen.kmz",
                  {suppressInfoWindows: true});
        sachsen.setMap(map);
        icon_beratung = "http://www.bildungsmarkt-sachsen.de/img/layout/common/map_point.png";
        checker = true;
}