$(document).ready( function() {
	try {
		if (google.loader.ClientLocation)
		{
			var data = 'latitude=' + google.loader.ClientLocation.latitude +
						'&longitude=' + google.loader.ClientLocation.longitude;

			$.ajax_handler({
				type: 'POST',
				url: '/ajax/main/coords',
				dataType: 'json',
				data: data,
				success: function(status) {
					// eat success
				},
				error: function (XMLHttpRequest, textStatus, errorThrown) {
					// eat the error
				}
			});
		}
	} catch(err) {
		// eat the error
	}
});