Помогите пожалуйста?!

Мне нужны аналоговые часы с подгрузкой времени с сервера и чтоб стрелки вертелись.
Eсть PHP файл time.php с кодом:

Код:
<?php
echo 'theTime='.urlencode(date('g:i:s A')).'&theHour='.urlencode(date('g')).'&theMinutes='.urlencode(date('i')).'&theSeconds='.urlencode(date('s')).'&amORpm='.urlencode(date('A'));
?>
Есть код для Flash:

Код AS1/AS2:
myVars = new LoadVars();
myVars.load("http://yourserver.com/time.php");
myVars.onLoad = function(success) {
if (success) {
trace("variables loaded");
trace(this.theTime);
trace(this.theHour);
trace(this.theMinutes);
trace(this.theSeconds);
trace(this.amORpm);
} else {
trace("Error loading page");
}
};
time = theTime();// time object
seconds = theSeconds();
minutes = theMinutes();
hours = theHour();
hours = hours+(minutes/60);
seconds = seconds*6;// calculating seconds
minutes = minutes*6;// calculating minutes
hours = hours*30;// calculating hours
sec._rotation = seconds;// giving rotation property
min._rotation = minutes;// giving rotation property
hour._rotation = hours;// giving rotation property
Время выводит на
Output пример: 11:49:57 AM
Вот стрелки не крутятся совсем.
Заранее спасибо!