var geocoder;
    
function initialize(){
    geocoder = new google.maps.Geocoder();				
}
	
	
$(document).ready(function() { 
         
  initialize();
				  
  $(function() {			 
		$('#address').geo_autocomplete({
			geocoder_region: 'Europa',
			mapheight: 0, mapwidth: 0, geocoder_address : true
		});
		$('#address2').geo_autocomplete({
			geocoder_region: 'Europa',
			mapheight: 0, mapwidth: 0, geocoder_address : true
		});
    
  });
  
});

