function buttonOver(img){var path=img.src;if(path.search('02\.')==-1){img.src=img.src.replace('01\.','02\.');}else{img.id="dont";}}
function buttonOut(img){if(img.id!="dont"){img.src=img.src.replace('02\.','01\.');}}
function clearField(element){element.value="";}
function init_map(){if(GBrowserIsCompatible()){map=new GMap2(document.getElementById("mapa"));map.addControl(new GScaleControl());var myIcon=new GIcon(G_DEFAULT_ICON);myIcon.image="http://www.epoxidy.sk/public/images/mapicon.png";myIcon.iconSize=new GSize(30,30);myIcon.iconAnchor=new GPoint(15,30);myIcon.shadowSize=new GSize(0,0);markerOptions={icon:myIcon};point=new GLatLng(48.323273,16.919889);map.setCenter(point,14);geocoder=new GClientGeocoder();var marker=new GMarker(point,markerOptions);map.addOverlay(marker);map.setUIToDefault();}}