$().ready(function() {
	$('#location').geo_autocomplete(new google.maps.Geocoder, {
		selectFirst: false,
		minChars: 3,
		cacheLength: 50,
		width: 300,
		scroll: true,
		scrollHeight: 330
	}).result(function(_event, _data) {
		if (_data){
			$.post('http://fortunatur.com/lodging/note.php', { selected: _data.formatted_address + '|' + _data.geometry.viewport + '|' + _data.geometry.location },
				function(data) {
					var myurl = _data.formatted_address.replace(/,/gi, '');
					window.location = "http://fortunatur.com/lodging/hotels/" + myurl.replace(/ /gi, '_') + ".html";
				}
			);
		}
	});

});
