// Analog Clock - Parameters Head Script
// You may change the parameters here to set up your clock
// refer to http://javascript.about.com/library/blclockm1.htm
// for a description of the parameters
var clocksize=120;
var colnumbers='ff5a00';
var colseconds='ff0000';
var colminutes='4040ff';
var colhours='4040ff';
var numstyle = 0; //0=numerals, 1=Roman numerals, 2=none
var font_family = 'georgia,arial,sans-serif';
var localZone = 1; //0=GMT, 1=visiters time zone
var mytimezone = 0;
var dst = 0;
var city = '';
var country = '';
var fix = 0;
var xpos=0;
var ypos=0;
// code to adjust for daylight saving time if applicable (localzone = 0)

// code to handle clock positioning (fix = 0)


new clock('a',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,mytimezone,dst,city, country,fix,xpos,ypos);
 
var localZone = 0; //0=GMT, 1=visiters time zone
var mytimezone = 2;
var dst = 0;
var city = 'Time at the';
var country = 'Junior Worlds';

new clock('b',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,mytimezone,dst,city, country,fix,xpos,ypos);
              