Thank you for helping me.
There is only one sidebar that is called. The left sidebar is part of the university template. Instead of breaking the file into header.php, footer.php and index.php, I just put it all in index.php. Here is the code:
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
@import "null?\"\{";
@import "/template/css/global_relative.css";
</style>
<style type="text/css" media="all">
@media tty { i{content:"\";/*" "*/}}@m; @import '/template/css/global_relative.css'; /*";} }/* */
</style>
<script src="/template/scripts/nav.js" type="text/javascript"></script>
<script src="/template/scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<link type="text/css" media="print" rel="stylesheet" href="/template/css/print.css" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
</head>
<body >
<div id="skipLinks">skip to: page content | links on this page | site navigation | footer (site information)</div>
<div id="container">
<div id="masthead">
<!-- BEGINNING OF LOGO AND UPPER NAVIGATION REGION: MASTHEAD -->
<img src="/template/titles/title_casnr.gif" alt="Texas Tech University" id="headerLogo" height="92" width="448" /> </div>
<div id="globalNav">
<? include ($_SERVER['DOCUMENT_ROOT']."/template/ttu_template_components/Global_TopNav.xhtml"); ?>
</div>
<!-- END OF LOGO AND UPPER NAVIGATION REGION: MASTHEAD -->
<!-- ___________________________________________________________________________________________ -->
<div id="sideBar">
<? include ($_SERVER['DOCUMENT_ROOT']."/template/ttu_template_components/Tier3_Search.xhtml"); ?>
<!-- AUDIENCE LEFT HAND NAVIGATION BEGINS -->
<? include ("http://www.depts.ttu.edu/agriculturalsciences/includes/siteMenu_new2.html"); ?>
<h3 onclick="showHideSwitch('ttuMenu')" class="expandMenuHdr">Texas Tech University <img src="/template/images/icons/menu_on_grey.gif" width="7" height="7" id="ttuMenuButton" alt="Expand TTU Menu." /></h3>
<dl class="expandMenu" style="margin:0;" id="mainTTUmenu">
<dd class="showSwitch" id="ttuMenu">
<? include ($_SERVER['DOCUMENT_ROOT']."/template/ttu_template_components/Global_LeftNav.xhtml"); ?>
</dd>
</dl>
<script language="javascript" type="text/javascript" src="/template/scripts/collapse.js"></script>
Need Help?
</div>
<!-- ____________________________________________________________________________________________________________________ -->
<div id="crumbs">
TTU Home
CASNR HomeCASNR Jobs
</div>
<!-- ____________________________________________________________________________________________________________________ -->
<div id="content">
<div class="narrowcolumn">
<h1>CASNR Jobs</h1>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<p class="date"><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></p>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<div id="footer">
<? include ("http://www.depts.ttu.edu/agriculturalsciences/includes/globalContacts_new2.html"); ?>
<? include ($_SERVER['DOCUMENT_ROOT']."/template/ttu_template_components/Global_Footer.xhtml"); ?>
<p>©2007
Texas Tech University | All Rights Reserved |
<script language="JavaScript" type="text/javascript"><!--//hide script from old browsers
document.write( "Last updated: " + document.lastModified +"");
//end hiding contents -->
</script>
</p>
</div>
</div>
</body>
</html>