?>
    <span class="submitted"><?php 
    print $submitted;
    ?>
</span>
  <?php 
}
?>

  <div class="content clear-block">
		<div class = "job_table">
			<?php 
$job_category = db_fetch_array(db_query('SELECT name, td.tid FROM term_node as tn LEFT JOIN term_data as td on tn.tid = td.tid WHERE nid = ' . $node->nid . ' AND td.vid = 5 LIMIT 0, 1'));
$job_category = i18ntaxonomy_translate_term_name($job_category['tid'], $job_category['name']);
$job_division = db_fetch_array(db_query('SELECT name, td.tid FROM term_node as tn LEFT JOIN term_data as td on tn.tid = td.tid WHERE nid = ' . $node->nid . ' AND td.vid = 4 LIMIT 0, 1'));
$job_division = i18ntaxonomy_translate_term_name($job_division['tid'], $job_division['name']);
?>
			<table>
        <tr><td colspan="2"><?php 
print ' &larr; ' . multilink_filter('process', 0, 3, '[528:' . t('back to jobs') . ']');
?>
</td></tr>
				<tr><td><h3><?php 
print $node->content['field_job_reqnumb']['field']['#title'];
?>
</h3></td><td><?php 
print $node->field_job_reqnumb[0]['view'];
?>
</td></tr>
				<tr><td><h3><?php 
print t('Job Category');
<div class="posted">
<?php 
print t('posted ') . format_date($node->created, 'custom', variable_get('date_format_gfs_date', ''));
// Get the term for type of news or event
foreach (taxonomy_node_get_terms_by_vocabulary($node, 3) as $term) {
    print " | " . i18ntaxonomy_translate_term_name($term->tid, $term->name);
}
?>
</div>

<?php 
if ($node->field_news_image[0]['filename']) {
    ?>
<div id="news_main_image">
  <div class="drop-shadow">
    <div class="drop-shadow-outer">
      <div class="drop-shadow-inner">
        <img class="main_image" src="/sites/default/files/imagecache/news_event_main/<?php 
    print $node->field_news_image[0]['filename'];
    ?>
" alt="<?php 
    print $node->field_news_image[0]['data']['alt'];
    ?>
" title="<?php 
    print $node->field_news_image[0]['data']['title'];
    ?>
" />
      </div>
    </div>
  </div>
</div>