/* * ThemeGray by Ian Reyes and Heng Yuan */var cmThemeGray ={// theme prefixprefix:	'ThemeGray',  	// main menu display attributes  	//  	// Note.  When the menu bar is horizontal,  	// mainFolderLeft and mainFolderRight are  	// put in <span></span>.  When the menu  	// bar is vertical, they would be put in  	// a separate TD cell.  	// HTML code to the left of the folder item  	mainFolderLeft: '',  	// HTML code to the right of the folder item  	mainFolderRight: '',// HTML code to the left of the regular itemmainItemLeft: '',// HTML code to the right of the regular itemmainItemRight:	'',// sub menu display attributes// HTML code to the left of the folder itemfolderLeft:		'',// HTML code to the right of the folder itemfolderRight:	'',// HTML code to the left of the regular itemitemLeft:		'',// HTML code to the right of the regular itemitemRight:		'',// cell spacing for main menumainSpacing:	0,// cell spacing for sub menussubSpacing:		0,// Below are optional settings// If not set, use the default// auto disappear time for submenus in milli-secondsdelay:			500,// sub menu header appears before the sub menu tablesubMenuHeader: null,// sub menu header appears after the sub menu tablesubMenuFooter:	null,offsetHMainAdjust:	[0, 0],offsetVMainAdjust:	[0, 0],offsetSubAdjust:	[0, 0],// act on click to open sub menu// not yet implemented// 0 : use default behavior// 1 : hover open in all cases// 2 : click on main, hover on sub// 3 : click open in all cases (illegal as of 1.5)clickOpen:		1,// special effects on open/closing a sub menueffect:			null};// for sub menu horizontal splitvar cmThemeGrayHSplit = [_cmNoClick, '<td colspan="3" class="ThemeGrayMenuSplit"><div class="ThemeGrayMenuSplit"></div></td>'];// for vertical main menu horizontal splitvar cmThemeGrayMainHSplit = [_cmNoClick, '<td colspan="3" class="ThemeGrayMenuSplit"><div class="ThemeGrayMenuSplit"></div></td>'];// for horizontal main menu vertical splitvar cmThemeGrayMainVSplit = [_cmNoClick, '|'];