function international( s )
{
	var int = document.getElementById("international");
	
	if( s )
	{
		int.style.display = "inline";
	}
	else
	{
		int.style.display = "none";
	}
}

$(document).ready(function(){
	if($("#map").length > 0)
	{
		if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(51.980968, 7.654724), 13);
        map.setUIToDefault();
        wehrmann = new GLatLng(51.9671619,7.6571421);
      var myHtml = "<h2><a href='http://www.wehrmann-derma.de'>Wehrmann W. u. Rödder-Wehrmann O. Dr.med.</a></h2><br/><p>Warendorfer Straße 183<br/>48145 Münster<br/>0251 3505-1<br/><a href='http://www.wehrmann-derma.de'>wehrmann-derma.de</a><br/>&nbsp;</p>";
     	marker = new GMarker(wehrmann);
    	map.addOverlay(marker);
		map.openInfoWindowHtml(wehrmann,myHtml);
      }
      GEvent.addListener(marker,"click", function() {     
  		map.openInfoWindow(wehrmann, myHtml);
	  });

      	
	}
});



