// Path script set up.

// Web path of the "script" directory (required). The web path can be an absolute path or a
// relative path (based on the path of the page that includes the path script). It should end
// with a "/".
var scriptPath="DHTMLmenu/script/";

// Web path of the content script (optional). Instead of including it into the page manually,
// set up a "contentScript" line in the path script to have the loader script load it for us.
// When a relative path is used, it must be based on the path of the Web page which includes
// the loader script. 
var contentScript="DHTMLmenu/content-BarMenu10.js";

// Web path of the style script (optional). Instead of including it into the page manually, set
// up a "styleScript" line in the path script to have the loader script load it. 
var styleScript="DHTMLmenu/content-BarMenu-style10.js";

// Menu margin (optional). A sub-menu will try to stay-in-view inside browser window. The menu
// margin sets the margin in pixels from the browser border that a sub-menu tries to stay away. 
var menuMargin=35;

// Show message (optional). This line shows messages in the browser status bar when the menu
// content is parsed or a menu instance is initialized or a menu item is mouseovered.
// Possible values are:
//   0 = Disable the display of messages.
//   1 = Display messages in the browser's status bar. 
var showMessage=1;

// Show tooltip (optional). This line shows the tool tip when a menu item is mouseovered.
// Possible values are:
//   0 = Do not show tool tips (default).
//   1 = Show tool tips.
var showToolTip=1;

// The menu timer defines the delay in milliseconds from a sub-menu item being mouseovered to its
// sub-menu showing up, as well as the delay from a out-of-border long menu being mouseovered to
// it starting to scroll in.

// It also sets the delay from a sub-menu being mouseout to the sub-menu going off, which would be
// two times of the value set. 
var menuTimer=200;
