$(function() {	
	$('#googlemap').jmap('init', {
		'mapType':G_NORMAL_MAP,
		'mapCenter':[53.800651,-4.064941],
		'mapZoom':5
	});	
	$('#dealers_button').click(function(ev){
		ev.preventDefault();
		$('#googlemap').jmap('SearchAddress', {
			'query': $('#dealer_spostcode').val()+", UK",
			'returnType': 'getLocations'
		}, function(result, options) {			
			var valid = Mapifies.SearchCode(result.Status.code), LatLong, Lat, Long;
			if (valid.success) {
				$.each(result.Placemark, function(i, point) {
					LatLong = [point.Point.coordinates[1], point.Point.coordinates[0]];
				});
				var keyword = $('#dealer_skeyword').val();
				if ('Keyword/s' != keyword) var addstr = '&keyword='+keyword;
				else var addstr = '';
				window.location = '/car/dealers/index.jsp?lat='+LatLong[1]+'&long='+LatLong[0]+'&dealer_postcode='+$('#dealer_spostcode').val()+'&dealer_keyword='+$('#dealer_skeyword').val()+addstr;
			}
			else $('#dealer_spostcode').val(valid.message);
		});
		return false;	
	});
});