//Site JavaScript
window.addEvent('domready', function() {
  //Add a hasjs class to the body
  $$('body')[0].addClass('hasjs');
  //Look for the ul#resumecontentb and add the click event to its li children
  if (myTriggers = $$('ul#resumecontentb h2')) {
		for(var i=0; i < myTriggers.length; i++) {
  			myTriggers[i].addEvent('click', function() {
    				this.getNext('ul').toggleClass('showme');
  			});
		}
  }
});


