/* icmsmenu.js     																								*/
/* purpose:         configuration for DHTML menu                                                                */
/* author:          Ueli Leutwyler                                                                        */
/* copyright:       insign gmbh                                                                                */
/* history:                                                                                                                                                        */
var stylesets = new Array();

// ------------------------ start copy to add new style-sets ------------------------
var stylename = "standard";                                         //name to be used as reference to this set of properties

stylesets[stylename] = new Array();
stylesets[stylename]['horiz']	= 11;                               // pixels a submenu is shifted horizontally
stylesets[stylename]['vert']    = 2;                               // pixels a submenu is shifted vertically
stylesets[stylename]['width']   = 150;                              // width of menu in pixel
stylesets[stylename]['absolute']= false;                        	// if true, scrollbars will be ignored. if false, position of scrollbars is considered
stylesets[stylename]['windowparams']= "location=yes,status=yes,toolbar=yes,resizable=yes"; // standard window parameters for link to external framses. can also be defined for every single link separately

stylesets[stylename]['style_tb']= "menuborder";                		// name of stylesheet-class that defines the look of the the table
                                              // WARNING the follwoing stylesheets must be loaded into the frame where the menus pop up
stylesets[stylename]['text_mouseoff']	= "tdtextoff";             	// stylesheet that is used for text in menu if neither selected nor mouse is over
stylesets[stylename]['text_mouseon'] 	= "tdtexton";             	// stylesheet that is used for text in menu if mouse is over but item is not selected
stylesets[stylename]['text_sel_off'] 	= "tdtextseloff";      		// stylesheet that is used for text in menu if mouse is not over but item is selected
stylesets[stylename]['text_sel_on']  	= "tdtextselon";      		// stylesheet that is used for text in menu if mouse is over but item is not selected 

stylesets[stylename]['row_mouseoff']	= "tdrowoff";            	// stylesheet that is used for every row in menu if neither selected nor mouse is over
stylesets[stylename]['row_mouseon'] 	= "tdrowon";             	// stylesheet that is used for every row in menu if mouse is over but item is not selected
stylesets[stylename]['row_sel_off'] 	= "tdrowseloff";  			// stylesheet that is used for every row in menu if mouse is not over but item is selected
stylesets[stylename]['row_sel_on']  	= "tdrowselon";   			// stylesheet that is used for every row in menu if mouse is over but item is not selected

stylesets[stylename]['border']			= "";		        		// stylesheet that is used for table around menu

stylesets[stylename]['subpic']  = "../images/arrow_closed.gif";  		// source of picture that is used to inidcate further submenues (source relative to target-document)

stylesets[stylename]['hidedelay']  = 1000;                			// delay before hiding menu after mouse slipt out of range


// ------------------------------------   end copy          --------------------------------