var gmapsPinImage = 'images/marker.png';

$(document).ready
(
    function()
    {
        
        $('#contactsMap').gMap
        (
            {
                maptype: G_HYBRID_MAP,
                controls: ['GLargeMapControl3D'],
                scrollwheel: true,
                icon:
                {
                    image: gmapsPinImage,
                    iconsize: [32, 32],
                    iconanchor: [16, 16],
                    infowindowanchor: [16, 16]
                },
                markers:
                [
                    {
                        latitude: 54.642273 + 0.0002,
                        longitude: 25.262911 + 0.00049,
                        html: '<div id="logoDiv"><strong>UAB "GROTA"</strong><br />Eišiškių pl. 26, LT-02184 Vilnius<br /><br />Tel.: (+370 5) 2167471<br />Faks.: (+370 5) 2164185</div>',
                        popup: true
                    }
                ],
                latitude: 54.642273+0.0005,
                longitude: 25.262911-0.0005,
                zoom: 16
            }
        );
    }
);
