/*
 *  CMATS site configuration v1.0
 *  For use by other javascript code    
 *  
 *  Copyright 2011, Matthies Dubelaar 
 */
 
// Standard page variables
  contentOffsetX = 257;                 //X coördinate of the top-left corner of the content div
  contentOffsetY = 146;                 //Y coördinate of the top-left corner of the content div
// End of standard page variables

// FlexToolbar configuration variables
  toolbarOffsetX = 10;                  //Offset to the right of the cursor position
  toolbarOffsetY = 10;                  //Offset downwards of the cursor position
  
  toolbarAreaOffsetX = 40;              //Size of the area left and right of the toolbar within which mouse movement won't make the toolbar disappear. This number should be equal to or greater than toolbarOffsetX
  toolbarAreaOffsetY = 20;              //Size of the area above and below of the toolbar within which mouse movement won't make the toolbar disappear. This number should be equal to or greater than toolbarOffsetY
  
  toolbarFadedOpacity = 0.2;            //Opacity to which the toolbar will be faded on initial load and after moving the mouse outside of the toolbar
  toolbarFadeToPartialTime = 250;       //Time (in ms) in which the toolbar will fade from 0.0 opacity to toolbarFadedOpacity
  toolbarFadeToFullTime = 400;          //Time (in ms) in which the toolbar will fade from toolbarFadedOpacity to 1.0 opacity  
  
  mouseMovementCheckerInterval = 10;    //Interval between the checks that determine if the cursor was moved
  holdTimeBeforeToolbar = 800;          //Time between the last mouse movement and showing the toolbar. Should preferably be an exact multitude of mouseMovementCheckerInterval
// End of FlexToolbar configuration variables
