function changeLanguage(lang) {
			document.forms[0].target = "_self";
			document.forms[0].action = document.URL;
			document.forms[0].plangcode.value = lang;
			document.forms[0].submit();
		}

		

		function closeTopHeader() {
			$('#topHeader').slideUp('slow');
		}
		function showTopHeader(topic) {
			$(".topHeaderTopic").each(function(){
		        $(this).hide();
		    });
			$('#topHeader').slideDown('slow');
			$('#topHeader_'+topic).fadeIn("slow");
			if(topic == 'contact') {
				initialize_google_maps();
			}
		}


		var map;

		function initialize_google_maps() {
		    var map_center = new google.maps.LatLng(47.361611, 8.513525);
		    var myOptions = {
		        zoom: 1,
		        center: map_center,
		        mapTypeId: google.maps.MapTypeId.ROADMAP
		    }

		    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

		    var Clients = new Array();
/*
		    Clients[0] = new Object();
		    Clients[0]["lng"] = 47.361611;
		    Clients[0]["lat"] = 8.513525;
		    Clients[0]["name"] = "13 Photo AG";

		    Clients[1] = new Object();
		    Clients[1]["lng"] = 53.559818;
		    Clients[1]["lat"] = 9.972936;
		    Clients[1]["name"] = "Die Bildbeschaffer GmbH";

		    Clients[2] = new Object();
		    Clients[2]["lng"] = 48.14883;
		    Clients[2]["lat"] = 11.53941;
		    Clients[2]["name"] = "STOCK4B GmbH";

		    Clients[3] = new Object();
		    Clients[3]["lng"] = 32.163808;
		    Clients[3]["lat"] = 34.808611;
		    Clients[3]["name"] = "Picscout";

		    Clients[4] = new Object();
		    Clients[4]["lng"] = 46.685985;
		    Clients[4]["lat"] = 7.867319;
		    Clients[4]["name"] = "Visual Impact GmbH";

		    Clients[5] = new Object();
		    Clients[5]["lng"] = 52.268514;
		    Clients[5]["lat"] = 4.561997;
		    Clients[5]["name"] = "Visions Pictures & Photography B.V.";
		    
		    Clients[6] = new Object();
		    Clients[6]["lng"] = 46.500007;
		    Clients[6]["lat"] = 11.368032;
		    Clients[6]["name"] = "Suedtirolfoto.com";

		    Clients[7] = new Object();
		    Clients[7]["lng"] = 47.361611;
		    Clients[7]["lat"] = 8.513525;
		    Clients[7]["name"] = "Sodapix AG";

		    Clients[8] = new Object();
		    Clients[8]["lng"] = 46.497796;
		    Clients[8]["lat"] = 11.353442;
		    Clients[8]["name"] = "Suedtirol Marketing KAG";

		    Clients[9] = new Object();
		    Clients[9]["lng"] = -34.596768;
		    Clients[9]["lat"] = -58.373049;
		    Clients[9]["name"] = "Getty Images Argentina";

		    Clients[10] = new Object();
		    Clients[10]["lng"] = 19.368508;
		    Clients[10]["lat"] = -99.267156;
		    Clients[10]["name"] = "Getty Images Mexico";

		    Clients[11] = new Object();
		    Clients[11]["lng"] = 34.063356;
		    Clients[11]["lat"] = -118.366186;
		    Clients[11]["name"] = "Getty Images U.S. Hispanic / EE.UU";

		    Clients[12] = new Object();
		    Clients[12]["lng"] = 53.550087;
		    Clients[12]["lat"] = 9.995669;
		    Clients[12]["name"] = "Focus, Photo- und Presseagentur GmbH";
		    */
		    
		    Clients[0] = new Object();
		    Clients[0]["lng"] = 47.361611;
		    Clients[0]["lat"] = 8.513525;
		    Clients[0]["name"] = "Sodatech AG";
		    
		    for (var i = 0; i < Clients.length; i++) {
		        var location = new google.maps.LatLng(Clients[i]["lng"], Clients[i]["lat"]);
		        var marker = new google.maps.Marker({
		            position: location,
		            map: map
		        });
		        var j = Clients[i]["name"];
		        marker.setTitle(j.toString());
		        var infowindow = new google.maps.InfoWindow({
		            content: Clients[i]["name"],
		            size: new google.maps.Size(50, 50)
		        });
		        google.maps.event.addListener(marker, 'click', function () {
		            infowindow.open(map, marker);
		        });
		    }
		}
