Analog Clock v0.1
=-=-=-=-=-=-=-

This is a themeable analog clock, it was tested on kde3.2.1 using superKaramba 0.33 and python 2.3.3

This clock comes with 4 different themes: Classic, Modern, Blue and Debian. 

Configuration options are:
Select Theme
Hide Seconds
Resize Applet
Resize Applet - percentage
Restore Default Dimensions

Notes on making your own clock theme:
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
You'll need 4 pictures: body, minute hand, hour hand and second hand
All of the 4 pictures should have the same dimensions.
The hands rotate around the center of the body.
When entering information into the analogClock.py file, the following format should be used:

	"themeTag" : [width, height, "body file", "hour file", "minute file", "second file"],

example:

	"classicTheme" : [117,117,"ClassicClock.png","ClassicHourHand.png","ClassicMinHand.png","ClassicSecHand.png"],
	
remember to add the information to the dialog as well (under themecommand in the menuOptionChanged function),
you should add the following format to the array: 
	
	"themeTag", "Theme Name", "off"
	
example:

	"classicTheme", "Classic Theme", "off"
