
$(document).ready(function(){if(GBrowserIsCompatible()){var map_center=new GLatLng(60.227962,24.888797);var office_loc=new GLatLng(60.227962,24.888797);var map=new GMap2(document.getElementById("map"));map.addControl(new GLargeMapControl());map.setCenter(map_center,15);var pxX=32;var pxY=32;var baseIcon=new GIcon();baseIcon.iconSize=new GSize(pxX,pxY);baseIcon.iconAnchor=new GPoint(Math.floor(pxX/2),pxY-10);baseIcon.infoWindowAnchor=new GPoint(Math.floor(pxX/2)+8,pxY-18);var fcIcon=new GIcon(baseIcon);fcIcon.image="/img/logos/logo.transparent.png";var marker=new GMarker(office_loc,{icon:fcIcon});GEvent.addListener(marker,"click",function(){var html=['<div style="font-family:arial;font-size:12px;">','<div style="font-weight:bold;">Mysema Office</div>','Ohjaajantie 16 B 16<br/>','00400 Helsinki</div>'].join('');marker.openInfoWindowHtml(html);});map.addOverlay(marker);GEvent.trigger(marker,"click");}});
