google.load("jquery", "1");

function successCallback(p) {
	$('#status').text('Your location is: ' + p.coords.latitude + ', ' + p.coords.longitude  + '. Timestamp is: ' + p.timestamp ).css({ color:"green" });

	// Find time
	$.getJSON("http://ws.geonames.org/timezoneJSON?lat=" + p.coords.latitude + "&lng=" + p.coords.longitude + "&callback=?",
			function(data){
			$('#status').append(" and the timezone adjusted time is " + data.time);
			});

}
