JSClock 0.1 supports:
1. More active clocks
2. Different times on clocks
3. Styles for the hours
4. Different strings for hours
5. Resizing the clocks
To do in the next versions:
1. Some nicer drawings
2. More functions for designers
3. Attach a digital clock
4. Allowing users to change time
5. Adding some label support
6. Maybe turn it into a widget
7. Implementing suggestions?
<script>
var w1= new JSClock('cl2');
w1.setParent(document.getElementById('pa'));
w1.setHours(hrs2,hrs2);
w1.setSize(80);
w1.drawC('red');
var diffTime = 10*60*1000+15000
w1.setTime(new Date(new Date().getTime()- diffTime));
w1.start();
</script>
This clock displays the current time minus 10 minutes