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 init_map() {
  if (GBrowserIsCompatible()) {
  
	map = new GMap2(document.getElementById("mapa"));
	
	map.addControl(new GScaleControl());
	
	point=new GLatLng(48.432004,17.005024);
	map.setCenter(point, 14);
	geocoder = new GClientGeocoder();
	
	var marker = new GMarker(point);
	map.addOverlay(marker);
	
	map.setUIToDefault();
	
  }
}
