function bd_menu() {
  $items['bd/foo'] = array(
    'title' => 'Foo',
    'page callback' => 'bd_foo',
    'access arguments' => array('view birthdays'),
    'type' => MENU_CALLBACK,
  );

   return $items;

}


function bd_foo() {
  return '<p>'. t('The quick brown fox jumps over the lazy dog.') .'</p>';
}
