I'm using the bones starter theme, and have already created one menu that looks like it's supposed to. It's called like this:\[code\]<?php bones_main_nav(); ?>\[/code\]and in the css it's styled simply by using the .menu class.Now I've created an alternate menu that will be used on some pages. I want it to have the exact same style applied to as the first one, only include different pages. I've called it like this:\[code\]<?php wp_nav_menu( array('menu' => 'my custom menu' )); ?>\[/code\]That shows the right pages but I can't seem to figure out how to apply the same styles to it that are already applied to the first one.