Passing values to Header Nav

Permalink
I have a static menu
<ul class="grid_8 navigation">
                  <li class="home"><a href="index.php">Home</a></li>
                  <li class="about"><a href="about.php">About Us</a></li>
                  <li class="practice"><a href="practice.php">Practice Areas</a></li>
                  <li class="articles"><a href="articles.php">Articles</a></li>
                  <li class="contact"><a href="contact.php">Contact Us</a></li>
            </ul>


I want to convert to
<?php 
         $a = new Area('Header Nav');
         $a->display($c);
         ?>

how do I pass class="grid_8 navigation" to the ul?

 
aaron replied on at Permalink Reply
I ended up hacking the view of the nav
//echo("<ul class=\"nav\">");


how would I use the nav block

<?php
$ah = new Area('Header_Nav');
$ah->display($c);
?>


but use an alternate view view_no_ul.php