function dom_init() {

  $('#people article').mouseenter(function(){
    $('#tagwolke li').not('#tagwolke li.'+this.id).stop().animate( {opacity: 0.15}, 250);
  });
    $('#people article').mouseleave(function(){
    $('#tagwolke li').stop().animate({opacity: 1}, 500);
  });
  
  $('#flickr a').fancybox();
  mapinit();
  
}

function mapinit() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    var point = new GLatLng(49.7971870, 9.9278669);
    var marker = new GMarker(point);
    map.addOverlay(marker);
    GEvent.addListener(marker, "click", function() {
        map.closeInfoWindow();
        map.openInfoWindow(point,'<strong>P8 Bürogemeinschaft</strong><br>Pleicherkirchgasse 8<br />97070 Würzburg<br /><a href="http://maps.google.com/maps?f=q&source=s_q&hl=de&geocode=&q=P8+B%C3%BCrogemeinschaft&sll=49.811800,9.866800&sspn=0.010200,0.021200&ie=UTF8&hq=P8+B%C3%BCrogemeinschaft&hnear=&filter=0&update=1&ll=49.797019,9.928057&spn=0.002562,0.0053&z=18">Große Karte</a>');
    });
    map.setCenter(point,16);
    map.addControl(new GSmallMapControl());
  }
}