function paw_srvcs_subitm_clk(id)
{
    var max = 10;
    for (var i=0;i<max;i++)
    {
        var n = "paw_srvcs_subitm" + i;
        var o = getElement(n);
        if (o)
        {
            var s = o.style;
            if (i==id)
                s.display == 'none' ? s.display = 'block' : s.display = 'none';
            else
                s.display = 'none';
            getElement("paw_srvcs_subitmlnk" + i).style.display = (s.display=='none')?'block':'none';
        }
    }
}

function gglmps_initialize()
{
    if (!GBrowserIsCompatible())
        return;

    var m = new GMap2(getElement("gglmps_canvas"));
    m.addControl(new GSmallMapControl());

    ll = new GLatLng(49.010655,8.439903);
    m.setCenter(ll, 15);
    
    var p = new GMarker(ll);
    m.addOverlay(p);

//    m.openInfoWindowHtml(m.getCenter(), "<b>Pflege Ambulant</b><br>Ostring 8<br>76131 Karlsruhe");
}

