//*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
// Generator   : PPWIZARD version 04.051
//             : FREE tool for Windows, OS/2, DOS and UNIX by Dennis Bareis (dbareis@labyrinth.net.au)
//             : http://www.labyrinth.net.au/~dbareis/ppwizard.htm
// Time        : Tuesday, 6 Apr 2004 8:26:10pm
// Input File  : d:\www_newdesign\samarth\source\samarth\scripts\tree_style.js.it
// Output File : d:\www_newdesign\samarth\target\samarth\scripts\tree_style.js
//*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+

/* --- Display of the TREE --- */
var TREE_LOCATION = {
// elem sizes for different levels of TREE
'width': [121, 175, 125],
'height': [21, 21, 21],
// TREE block offset from the origin:
//  for root level origin is upper left corner of the page
//  for other levels origin is upper left corner of parent elem
'block_top': [140, 5, 15],
'block_left': [6, +75, 100],
// offsets between elems of the same level
'top': [21, 21, 21],
'left': [0, 0, 0],
// time in milliseconds before TREE is hidden after cursor has gone out
// of any elems
'hide_delay': [200, 200, 200]
};
/* --- dynamic TREE styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/
var TREE_STYLES = {
// default elem state when it is visible but doesn't have mouse over
'onmouseout': [
//      'color', ['#000000', '#000000', '#000000'],
//      'background', ['#8ac6f8', '#79b5e7', '#8ac6f8'],
'color', ['#ffffff', '#000000', '#000000'],
'background', ['#004E82', '#99d5f7', '#8ac6f8'],
],
// state when elem has mouse over it
'onmouseover': [
'color', ['#ffffff', '#ffffff', '#ffffff'],
'background', ['#68a4d6', '#5793c5', '#68a4d6'],
],
'onmousedown': [
'color', ['#000000', '#000000', '#000000'],
'background', ['#cccccc', '#cccccc', '#cccccc'],
]
};

