
/* menu positions for GEOLOGY menu*/
/* menu has only 3-4 levels but the 5th level left in there for possible future use */

var MENU_POS = {
	'height' : [20, 20, 20, 20, 20],		/* Item's height in pixels - level 0, 1, 2, 3, 4 */
	'width' : [170, 170, 170, 170, 170],		/* Item's width in pixels - level 0, 1, 2, 3, 4 */
	 /* Vertical Offset between adjacent levels* in pixels; first coordinate:valignment on page */
	'block_top' : [185, 20, 20, 20, 20],
	 /* Horizontal Offset between adjacent levels* in pixels; first coordinate:halignment on page */
	'block_left' : [0, 0, 0, 0, 0],
	 /* Vertical Offset between the items within level in pixels */
	'top' : [20, 19, 19, 19, 19],
	 /* Horizontal Offset between the items within level in pixels */
	'left' : [0, 0, 0, 0, 0],
	 /* Time delay in milliseconds before menu collapses after mouse pointer left all items - is set high to keep the menu 
	 from moving too fast for slower, inexperienced users*/
	'hide_delay' : [900, 900, 900, 900, 900],
	 /* Time delay in milliseconds before menu expands - is set high to keep the menu 
	 from moving too fast for slower, inexperienced users*/
	'expd_delay' : [900, 900, 900, 900, 900],
	 /* Path to transparent gif 1x1 px as it appears in src attribute of <img> tag */
	'pixel_path' : '/images/pixel.gif',
	'align' : 'left', // left, center, right
	'valign' : 'top', // top, center, bottom
	'scroll' : 'none' // none, vertical, horizontal, both
};


