// 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=70;
var colnumbers='#503a2d';
var colseconds='eaa468';
var colminutes='503a2d';
var colhours='503a2d';
var numstyle = 0;
var font_family = 'helvetica,arial,sans-serif';
var localZone = 0;
var mytimezone = 0;
var dst = 0;
var city = 'Sofia';
var country = '';
var fix = 1;
var xpos=0;
var ypos=0;
// code to adjust for daylight saving time if applicable (localzone = 0)

// code to handle clock positioning (fix = 0)
var localZone = 0;
var mytimezone = 1;
var dst = 0;
var city = '';
new clock('a',clocksize, colnumbers,colseconds,colminutes, colhours,numstyle,font_family, localZone,mytimezone,dst,city, country,fix,xpos,ypos);

var localZone = 1;
var mytimezone = 0;
var dst = 0;
var city = '';
new clock('b',clocksize,colnumbers,colseconds,colminutes,colhours,numstyle,font_family,localZone,mytimezone,dst,city,country,fix,xpos,ypos);

var localZone = 0;
var mytimezone = 4;
var dst = 0;
var city = '';
new clock('c',clocksize,colnumbers,colseconds,colminutes,colhours,numstyle,font_family,localZone,mytimezone,dst,city,country,fix,xpos,ypos);                
