//--------------------------------------------------------------
// javascript generated css for menu system
// Note: #NAVBAR corresponds to this.id = 'menujs' in menujs()
//


css = " \
table#NAVBAR { border-collapse: separate; border-spacing:1px; margin-left:0px; width:10%;font-family: sans-serif; font-size:9px;border:0} \n\
table#NAVBAR td       { border: 1px solid white; text-align:center } \n\
table#NAVBAR td.Link  { border: 1px solid #CCC; } \n\
table#NAVBAR td.Here  { border: 1px solid #CCC;  \n\
                      ; font-weight:bold; background-color: #858B04; color: #FFFFFF \n\
                      } \n\
table#NAVBAR td.Group { border: 1px solid #999; background: #858B04; color: #444 } \n\
table#NAVBAR td.Group a:hover { font-weight: bold } \n\
table#NAVBAR td.Group a:visited { color: red } \n\
"

document.write ('<STYLE TYPE="text/css">' + css + '</STYLE>')


//--------------------------------------------------------------
function ArticleLinks () {
  this.id = 'NAVBAR'           // use NAVBAR in css specifiers

  this.groups =
  [
    { text:''
    , linkClass:'Link'
    , links:
      [ { text: 'EMail'          , dest:'https://webmail.one.com/mail/bmail' }
      ,{ text: 'Home'          , dest:'index' }
      ,{ text: 'ContactUs'             , dest:'contactus'}
      , { text: 'Outsourcing',      dest: 'outsourcing' }
      , { text: 'Clients',      dest: 'cstslclients' }  
      , {  text: 'Help', dest: 'cstslhelp' }  
    
      ]
    , destTemplate: "##dest##.html"
    }
    ]

//this.maxItemsPerRow = 1

  this.groupsStartNewRow = true
  this.groupClass = 'Group'

  this.overColor = "#E4F5A9"   // mouse over background color
  this.outColor  = "#CFD1A6"   // mouse out background color

  this.linkAtClass   = "Here"  // use Here in css specifiers

  this.duration = 300          // duration of entire transition (ms)
  this.steps = 10              // number of transition steps

//this.postHTML                // HTML to place after generated HTML, can be a function

//this.uiStyle = 'DROPDOWN' | 'NAVBAR'  // not implemented
}
