function rollOver(id)
{
  $('#' + id).each(function(){
  $(this).attr('class', 'nav_button_over');
  });
}

function rollOut(id)
{
   $('#' + id).each(function() {
   $(this).attr('class', 'nav_button');
  });
}

function subrollOver(id)
{
  $('#' + id).each(function(){
  $(this).attr('class', 'subnav_button_over');
  });
}

function subrollOut(id)
{
   $('#' + id).each(function() {
   $(this).attr('class', 'subnav_button');
  });
}
