diff -upNr /home/drupal/drupal-4.7.5/themes/multiflex/css/style_screen.css multiflex/css/style_screen.css
--- /home/drupal/drupal-4.7.5/themes/multiflex/css/style_screen.css	2007-01-25 17:38:34.000000000 +0000
+++ multiflex/css/style_screen.css	2007-02-13 17:36:07.000000000 +0000
@@ -80,7 +80,7 @@ body {font-size: 62.5%; margin: 0px auto
 
 .site-slogan a:hover {text-decoration: none; color: rgb(50,50,50);}
 
-.img-header {clear: both; float: left; width: 770px; height: 250px; margin: 0px; padding: 0px;}
+.img-header {clear: both; float: left; width: 770px; height: 120px; margin: 0px; padding: 0px;}
 
 
 
diff -upNr /home/drupal/drupal-4.7.5/themes/multiflex/page.tpl.php multiflex/page.tpl.php
--- /home/drupal/drupal-4.7.5/themes/multiflex/page.tpl.php	2007-01-25 17:35:11.000000000 +0000
+++ multiflex/page.tpl.php	2007-02-13 17:41:02.000000000 +0000
@@ -7,10 +7,7 @@
     <meta name="description" content="Your description goes here" />
     <meta name="keywords" content="your,keywords,come,here" />
     <?php print $head ?>
-    <?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_screen.css', 'screen');?>
-    <?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_print.css', 'print');?>
-<?php print theme('stylesheet_import', base_path() . path_to_theme() . '/css/style_override.css', 'all');?>
-<?php print $styles ?>
+<?php print drupal_get_css($css); ?>
   </head>
 
   <body<?php print theme("onload_attribute");?>>
@@ -27,14 +24,8 @@
       <!-- Navigation Level 1-->
       <div class="nav1-container">
 	<div class="nav1">
-	  <?php if (is_array($secondary_links)) : ?>
-	  <ul>
-	    <?php foreach ($secondary_links as $link): ?>
-	    <li><?php print $link?></li>
-	    <?php endforeach; ?>
-	  </ul>
-	  <?php endif; ?>
-	</div>
+      <?php //theme('links', $secondary_links); ?>
+	  	</div>
       </div>
 
       <!-- Sitename -->
@@ -55,14 +46,8 @@
 
       <!-- Navigation Level 2-->
       <div class="nav2">
-	<?php if (is_array($primary_links)) : ?>
-	<ul>
-	  <?php foreach ($primary_links as $link): ?>
-	  <li> <?php print $link?> </li>
-	  <?php endforeach; ?>
-	</ul>
-	<?php endif; ?>
-      </div>
+        <?php print theme('links', $primary_links); ?>
+	      </div>
 
       <!-- Buffer after header -->
       <div class="buffer"></div>
diff -upNr /home/drupal/drupal-4.7.5/themes/multiflex/template.php multiflex/template.php
--- /home/drupal/drupal-4.7.5/themes/multiflex/template.php	2006-07-07 21:44:00.000000000 +0100
+++ multiflex/template.php	2007-02-13 17:29:38.000000000 +0000
@@ -1,4 +1,7 @@
 <?php
+drupal_add_css(path_to_theme().'/css/style_screen.css', 'theme', 'screen');
+drupal_add_css(path_to_theme().'/css/style_print.css', 'theme', 'print');
+drupal_add_css(path_to_theme().'/css/style_override.css', 'theme', 'all');
 
 function phptemplate_block_list($region) {
   //  This is the list function from the block module.  We have to comment
