/************************ Configuration ************************/
// See readme.html for an in-depth explanation of configure options and examples
// this configuration file is used for the demos within the readme.html page
// you can use this as a guide starting point to configuring jshelp on your own pages
// see also samplecfg.js, which is a minimal sample configuration and a good starting point

// initialize help object
var jshelp = new JSHelp('jshelp');

// how long (in milliseconds) before the help box is hidden
// a millisecond is 1/1000th of a second, so 1000 milliseconds equals 1 second, while 500 equals
// a half second, etc
// use zero (0) to disable auto-hide.
jshelp.hide_timeout = 1000;

// the default amount of space to leave between the trigger element and the help div (pixels x, pixels y)
// this can be overridden for individual elements in the options below
// values are unsigned (can be positive or negative)
jshelp.offset = new Offset(5, 0);

// override amount of space to leave between the trigger element and the help div (pixels x, pixels y)
// this overrides the default offset option above for individual elements or alignments
// ex: jshelp.alignoffset['botleft'] = new Offset(15, 5);  See readme.html for more info.
// ex: jshelp.divoffset['mydiv'] = new Offset(-10, 20);

// default helpbox alignment relative to the trigger element.
// Options: topleft, topcenter, topright, midleft, midcenter, midright, botleft, botcenter, botright
jshelp.helpboxalign = 'midright';

// class name used for help divs
jshelp.div_classname = 'divhelp';

// I changed example below. Remove // if needed.
//var apppopup = new JSHelp('apppopup');
//apppopup.hide_timeout = 3000;
//apppopup.offset = new Offset(5, 0);
//apppopup.helpboxalign = 'midleft';
//apppopup.div_classname = 'divapppopup';



/************************ End Configuration ************************/
