I believe you would need to get the viewer's time offset and adjust the clock accordingly.
In the send header function add this:
$myOffset = $user['U_TimeOffset'] * 3600;
In the javascript change this:
Now = new Date();
to this:
Now = new Date() - $myOffset;
You would need to add U_TimeOffset to the basic auth list though since this will be needed on every page (for the most part)
Also, should set up a default if the viewer does not have their offset set.
And, if the viewer's offset is incorrect the time displayed will be incorrect also.
I'll add this here to see if it works.
