Wow, i finally did it. This was very tricky and mixed alot of content i had written to enable this function without disrupting my themes layout.
STEP 1:
I first duplicated by sidebars and made and extra six winch would now be the sidebars"widget areas" below my header.
t_sidebar.php to t6_sidebar.php. Each had the following text and of course corresponding to the sidebar name:
<!-- begin t5_sidebar -->
<div id="t5_sidebar">
<ul id="t5_sidebarwidgeted">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(4) ) : else : ?>
<h5>Recently Written</h5>
<?php get_archives('postbypost', 10); ?>
<h5>Categories</h5>
<?php wp_list_cats('sort_column=name'); ?>
<h5>Archives</h5>
<?php wp_get_archives('type=monthly'); ?>
<?php endif; ?>
</div>
<!-- end t5_sidebar -->
STEP 2:
Insrted the following code where i wanted it to display in the header.
</div>
<div id="third">
<?php include(TEMPLATEPATH."/t_sidebar.php");?>
</div>
<div id="fourth">
<?php include(TEMPLATEPATH."/t1_sidebar.php");?>
</div>
<div id="fifth">
<?php include(TEMPLATEPATH."/t2_sidebar.php");?>
</div>
<div id="sixth">
<?php include(TEMPLATEPATH."/t3_sidebar.php");?>
</div>
<div id="seventh">
<?php include(TEMPLATEPATH."/t4_sidebar.php");?>
</div>
<div id="eighth">
<?php include(TEMPLATEPATH."/t5_sidebar.php");?>
</div>
Step 3:
Did the styling as below:
#header-sidebar {
border: 1px solid #cccccc;
display:block;
height: 260px;
}
#t1_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t2_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t3_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t4_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t5_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
#t6_sidebar {
float: left;
width: 250px;
margin-right:20px;
display:inline;
text-align:left;
}
And there, it was done. :-) Have a read here to http://www.sueblimely.com/add-widget-ready-sidebars-to-wordpress-footers/