<?php
// This is the default gallery header (for the main gallery
// page: albums.php). It's companion is gallery.footer.default. 
//
// To override this header, create a file called gallery.header
// in this directory. 
//
// NOTE: This header cets inserted below the <body> tag.
// 
// Some tips:
// * Some application variables:
//      - Gallery Title: $gallery->app->galleryTitle
//
// $Id: gallery.header.default,v 1.14 2003/12/09 14:52:33 jenst Exp $
?>
<?php
includeHtmlWrap("wrapper.header");
if ($gallery->direction == 'ltr') {
        $left="left";
        $right="right";
}
else {
        $left="right";
        $right="left";
}
?>
<table width="100%" border="0">
  <tr>
    <td>
      <table cellpadding="0" cellspacing="0" width="100%" border="0" align="center" class="mod_headliner">
        <tr valign="middle">
          <td class="leftspacer"></td>
          <td>
            <table cellspacing="0" cellpadding="0" class="mod_toplight_bg">
              <tr>
                <td class="mod_toplight_left" align="<?php echo $right ?>"></td>
                <td nowrap class="head" align="<?php echo $left ?>">
                  &nbsp;<?php echo $gallery->app->galleryTitle ?>&nbsp;
                </td>
                <td class="mod_toplight_right" align="<?php echo $left ?>"></td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
      <table width="100%" cellpadding="0" cellspacing="0">
        <tr>
          <td class="mod_under_hl"></td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td valign="top">
