
// directory of where all the images are
var cmThemePanel4Base = '/JSCookMenu/ThemePanel4/';

// the follow block allows user to re-define theme base directory
// before it is loaded.
try
{
	if (myThemePanel4Base)
	{
		cmThemePanel4Base = myThemePanel4Base;
	}
}
catch (e)
{
}

var cmThemePanel4 =
{
	prefix:	'ThemePanel4',
  	// 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,

	subMenuHeader: '<div class="ThemePanel4SubMenuShadow"></div><div class="ThemePanel4SubMenuBorder">',
	subMenuFooter: '</div>',

	// move the first lvl of vbr submenu up a bit
	offsetVMainAdjust:	[0, -2],
	// also for the other lvls
	offsetSubAdjust:	[0, -2]

	// rest use default settings
};
// for sub menu horizontal split
var cmThemePanel4HSplit = [_cmNoClick, '<td colspan="3" class="ThemePanel4MenuSplit"></td>'];
// for vertical main menu horizontal split
var cmThemePanel4MainHSplit = [_cmNoClick, '<td colspan="3" class="ThemePanel4MenuSplit"></td>'];
// for horizontal main menu vertical split
var cmThemePanel4MainVSplit = [_cmNoClick, '|'];

/* IE can't do negative margin on tables */
/*@cc_on
	cmThemePanel4.subMenuHeader = '<div class="ThemePanel4SubMenuShadow" style="background-color: #aaaaaa;filter: alpha(opacity=50);"></div><div class="ThemePanel4SubMenuBorder">';
@*/
