/**
 * @author Rich
 */

 $(document).ready(function() {
 	if ((google.loader.ClientLocation) && (google.loader.ClientLocation.latitude) && 
		(google.loader.ClientLocation.longitude) && (google.loader.ClientLocation.address)) {
		document.cookie = "lat=" + google.loader.ClientLocation.latitude + "; path=/; expires=" + _100_WEEKS;
		document.cookie = "lng=" + google.loader.ClientLocation.latitude + "; path=/; expires=" + _100_WEEKS;
		document.cookie = "description=" + google.loader.ClientLocation.address.city + ", " + google.loader.ClientLocation.address.region + "; path=/; expires=" + _100_WEEKS;
	}
 });