$(document).ready( function() {

  $('#subMenu li').prepend('<div>&nbsp;</div>').each(function(t) {
    t = (t+1)%5,
    bg = '#'+(t===0?'A8AD80': (t===4?'235461': (t===3?'9DB4B4': (t===2?'6B2717': '9A8E71'))));
    $(this).find('div').css('background-color', bg);
  });

  $('#subMenu li').each( function() {
       w = $(this).text();
       y = $('#subArticle h2').text();
       y = jQuery.trim(y);
       w = jQuery.trim(w);
    if (y == w) {
      $(this).addClass('subPage');
      $('.subPage a').css('color', '#FFF');
      $('.subPage div').css('background-color', '#FFF');
    }
  });

  title = $('#hiddenTitle').text();
  if (typeof title !== undefined) {
    headerbg = $('#' + title).css('background-color');
    $('li.subPage, #subArticle .learnMore').css('background-color', headerbg);
    $('#subArticle').css('border-color', headerbg);
    $('#subArticle h2, #subArticle h3').css('color', headerbg);
  }

});
