Find class in next UL

Find class in next UL

I have a hover fuction that returns a jquery object when it finds an anchor. What would be the test statement to see if the next ul has a class of 'secondary'?

Then if this is true I would display it. Thanks!

  1. <li><a href="#">Buy Tickets</a></li>
  2. <li><a href="#">Group Sales</a></li>
  3. <li>
  4. <a href="#">Reviews</a>
  5. <ul class="secondary">
  6. <li><a href="#">One</a></li>
  7. <li><a href="#">Two</a></li>
  8. <li><a href="#">Three</a></li>
  9. </ul>