Hey Barry, the woo themes provided snippit did not seem to do anything. I used the Events Calendar snippit to get the blog nav item to show showing and then added some more custom css to change the color of the event nav item. That code is below.
#navigation ul.nav > li.current_page_item a, #navigation ul.nav > li.current_page_parent a, #navigation ul.nav > li.current-menu-ancestor a, #navigation ul.nav > li.current-cat a, #navigation ul.nav > li.current-menu-item a {
background-color: #673695;
background-image: -webkit-gradient(linear, left top, left bottom, from(#673695), to(#340362));
background-image: -webkit-linear-gradient(top, #673695, #340362);
background-image: -moz-linear-gradient(top, #673695, #340362);
background-image: -ms-linear-gradient(top, #673695, #340362);
background-image: -o-linear-gradient(top, #673695, #340362);
background-image: linear-gradient(to bottom, #673695, #340362);
}