Try
function entry_time($format='F jS, Y g:i A Z21600') {
global $entry;
echo date($format, strtotime($entry['date']));
Z is offset for time zone
21600 is 3600x6
Zvalue to make the time zone more
Z-value to make the time zone less
I think that will work.