$(function(){
$('.nav').find('a').each(function(){
if( location.href.indexOf(this.href) != -1) {
$(this).addClass('current-page');
}
});
});
$(function(){
$('ul.runners-list2 li').find('a').each(function(){
if( location.href.indexOf(this.href) != -1) {
$(this).attr('id', 'current-page2');
}
});
});

$(function () {
  //hide the all of the element with class msg_body
  $(".toggle-runners-container").hide();
  //toggle the componenet with class msg_body
  $(".toggle-runners").click(function()
  {
    $(this).next(".toggle-runners-container").slideToggle(200);
	$(".toggle-runners span").toggleClass('color-black');
  });
});

