function initialize()
{
  var myLatlng = new google.maps.LatLng(50.960, 8.000);
  var myOptions = { zoom:12, center:myLatlng, mapTypeId:google.maps.MapTypeId.ROADMAP }
  var map = new google.maps.Map(document.getElementById("content_map"), myOptions);

  var posGlonk = new google.maps.LatLng(51.00432,7.97993);
  var markGlonk = new google.maps.Marker({ position:posGlonk, map:map, title:"Jugendtreff Glonk" });
  var infoGlonk = '<div class="content_gmaps-info"><p><strong>Jugendtreff Glonk</strong></p></div>';

  var posBusch = new google.maps.LatLng(50.934575,8.008195);
  var markBusch = new google.maps.Marker({ position:posBusch, map:map, title:"Jugendtreff Busch-Hütte" });
  var infoBusch = '<div class="content_gmaps-info"><p><strong>Jugendtreff Busch-Hütte</strong></p></div>';

  var posJBS = new google.maps.LatLng(50.96061,7.99487);
  var markJBS = new google.maps.Marker({ position:posJBS, map:map, title:"Jugendbegegnungsstätte JBS" });
  var infoJBS = '<div class="content_gmaps-info"><p><strong>Jugendbegegnungsstätte JBS</strong></p></div>';

  var posPaletti = new google.maps.LatLng(50.97921,7.96823);
  var markPaletti = new google.maps.Marker({ position:posPaletti, map:map, title:"Jugendtreff Paletti" });
  var infoPaletti = '<div class="content_gmaps-info"><p><strong>Jugendtreff Paletti</strong></p></div>';

  var posMeltingPot = new google.maps.LatLng(50.969801,7.988432);
  var markMeltingPot = new google.maps.Marker({ position:posMeltingPot, map:map, title:"Jugendtreff Melting Pot" });
  var infoMeltingPot = '<div class="content_gmaps-info"><p><strong>Jugendtreff Melting Pot</strong></p></div>';

  var infoWindow = new google.maps.InfoWindow();
  google.maps.event.addListener(markGlonk, 'click', function() { infoWindow.content = infoGlonk; infoWindow.open(map, markGlonk); });
  google.maps.event.addListener(markBusch, 'click', function() { infoWindow.content = infoBusch; infoWindow.open(map, markBusch); });
  google.maps.event.addListener(markJBS, 'click', function() { infoWindow.content = infoJBS; infoWindow.open(map, markJBS); });
  google.maps.event.addListener(markPaletti, 'click', function() { infoWindow.content = infoPaletti; infoWindow.open(map, markPaletti); });
  google.maps.event.addListener(markMeltingPot, 'click', function() { infoWindow.content = infoMeltingPot; infoWindow.open(map, markMeltingPot); });
}

$(document).ready(function()
{
  var arrRealUrl = window.location.pathname.substring(1, (window.location.pathname.length - 1)).split("/");

  if ($.flash.hasVersion(9.1))
  {
    $("#bab2010").flash({ swf: "/flash/bab_428px.swf",width:428,height:290 })
    $("#bab_116px").flash({ swf: "/flash/bab_116px.swf",width:116,height:93 })
  }
});
