/**
 * Default values used in WorkRoom
 */
var scrollDuration = 1000; //Default value for all scrolls
var reactionThreshold = 500; //How long will the page wait until activating a special input? This is set here.
var itemsInList = 10; //How many items should be shown in a select-list? This is set here.
var idleThreshold = 30000; //How long it will take until WorkRoom shows it's idle

/**
 * iceBox
 * Menu, Progress
 */
var hoverMenu = 0; //Boolean, is the menu hovered or not? 1 == now hovering
var menuPositionDown = -770; //Set position of menu (we don't want to show the items when not hovering)
var menuPositionUp = -539; //Set position when hovering (we want to see all items)
var hoverProgress = 0; //Boolean, is the progress-box hovered or not? 1 == now hovering
var progressPositionDown = -900; //Set position of progress-box (we don't want to show the items when not hovering)
var progressPositionUp = -739; //Set position when hovering (we want to see all items)

/**
 * Common used (and necessary) variables
 */
var specialInputTimeoutId; //For special inputs, clear this to prevent input to open up (like a select)
var key = Array(); //Contains which keys that is pressed right now, for example ctrl
var fullHeightMargin; //How much space should there be between each block? This is set in initBlockMargins()
var firstHeightMargin; //How much space should there be over the first block? This is set in initBlockMargins()
var idleTimeoutId; //Clear this timeout everytime a new action is sent to system message

/**
 * Common used, in general
 */
var eMsgId = new Array; //Stores event message ids
