function h()
{
d = new Date();
t1.gotoAndStop(int(d.getHours() / 10) + 1);
t2.gotoAndStop(d.getHours() % 10 + 1);
t3.gotoAndStop(int(d.getMinutes() / 10) + 1);
t4.gotoAndStop(d.getMinutes() % 10 + 1);
} // End of the function
function a_m()
{
this._alpha = this._alpha -...