if (location.host == 'www.bc-cafe.de' ) var key = 'ABQIAAAAKaLfx5uNBTVImunhYgBsbRRC2Cby4VuPiK9dFYzb23SmEwWrTBSwf3ykVze4MiWCRAD_L-8AJg5_iA';
    if (location.host == 'www.bc-studentencafe.de' ) var key = 'ABQIAAAAKaLfx5uNBTVImunhYgBsbRSf-EZUt1Eh_zozYybXV0S5qvmtbBQD8NzL0XE21kuhJ4uQG9CP20RlFQ';
    if (location.host == 'bc-cafe.de' ) var key = 'ABQIAAAAKaLfx5uNBTVImunhYgBsbRRC2Cby4VuPiK9dFYzb23SmEwWrTBSwf3ykVze4MiWCRAD_L-8AJg5_iA';
    if (location.host == 'bc-studentencafe.de' ) var key = 'ABQIAAAAKaLfx5uNBTVImunhYgBsbRSf-EZUt1Eh_zozYybXV0S5qvmtbBQD8NzL0XE21kuhJ4uQG9CP20RlFQ';
    
    //console.log("<script src='http://maps.google.com/maps?file=api&v=2&key=" + key + "'" + " type='text/javascript'></script>");
    document.write("<script src='http://maps.google.com/maps?file=api&v=2&key=" + key + "'" + " type='text/javascript'></script>");  


function createMarker(point,html) {
	var marker = new GMarker(point);
	// Zeige Info Fenster bei Klick
	GEvent.addListener(marker, 'click', function() {
	marker.openInfoWindowHtml(html);
	});
	return marker;
}
  
  $(document).ready(function(){
    
	//console.log(location.host);
	  
	
	  
	  
	  
	  
	var map = new GMap2(document.getElementById('map'));
	var cafe = new GLatLng(50.68095758312195,10.932952165603638);
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	//map.addMapType(G_HYBRID_MAP);
	//map.setCenter(cafe, 17);
	
	map.setCenter(cafe, 16, G_HYBRID_MAP);
	
	var point = new GLatLng(50.68095758312195,10.932952165603638);
	var marker = createMarker(point,'<div style="width:200px; height:143px"><img src="http://ilsc.fem.tu-ilmenau.de/bc-cafe/themes/cafe/images/cafeloading200.jpg" alt="" /></div>')
	map.addOverlay(marker);
	

  });