
// directory of where all the images are
var cmThemeC1000Base = MenuThemeBasePath + 'ThemeC1000/';

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

var cmThemeC1000 =
{
    prefix:    'ThemeC1000',
      // 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: '&nbsp;',
      // HTML code to the right of the folder item
      mainFolderRight: '&nbsp;',
    // HTML code to the left of the regular item
    mainItemLeft: '&nbsp;',
    // HTML code to the right of the regular item
    mainItemRight: '&nbsp;',

    // sub menu display attributes

    // HTML code to the left of the folder item
    folderLeft: '<img alt="" src="' + cmThemeC1000Base + 'spacer.gif">',
    // HTML code to the right of the folder item
    folderRight: '<img alt="" src="' + cmThemeC1000Base + 'arrow.gif">',
    // HTML code to the left of the regular item
    itemLeft: '<img alt="" src="' + cmThemeC1000Base + 'spacer.gif">',
    // HTML code to the right of the regular item
    itemRight: '<img alt="" src="' + cmThemeC1000Base + 'blank.gif">',
    // cell spacing for main menu
    mainSpacing: 0,
    // cell spacing for sub menus
    subSpacing: 0,

    subMenuHeader: '<div class="ThemeC1000SubMenuShadow"></div>',

    offsetHMainAdjust:    [-1, 0],
    offsetSubAdjust:    [-1, -1],

	delay:      50,

    // rest use default settings
};

// for horizontal menu split
var cmThemeC1000HSplit = [_cmNoClick, '<td class="ThemeC1000MenuItemLeft"></td><td colspan="2" class="ThemeC1000MenuSplit"><div class="ThemeC1000MenuSplit"></div></td>'];
var cmThemeC1000MainHSplit = [_cmNoClick, '<td class="ThemeC1000MainItemLeft"></td><td colspan="2" class="ThemeC1000MenuSplit"><div class="ThemeC1000MenuSplit"></div></td>'];
var cmThemeC1000MainVSplit = [_cmNoClick, '<div class="ThemeC1000MenuVerticalSplit"></div>'];

/* IE can't do negative margin on tables */
/*@cc_on
    cmThemeC1000.subMenuHeader = '<div class="ThemeC1000SubMenuShadow" style="background-color: #cccccc; filter: alpha(opacity=35);"></div>';
@*/

