$(document).ready(function(){
	try {
		if (typeof google != 'undefined' && typeof google.loader != 'undefined' && typeof google.loader.ClientLocation != 'undefined' && google.loader.ClientLocation != null) {
			$.get(root + 'vv/remote/setGoogleLocation', {
				longitude: google.loader.ClientLocation.longitude,
				latitude: google.loader.ClientLocation.latitude,
				city: google.loader.ClientLocation.address.city,
				region: google.loader.ClientLocation.address.region,
				country: google.loader.ClientLocation.address.country,
				countryCode: google.loader.ClientLocation.address.country_code
			})
		}
	} catch (e) {}
})

