Hi,
that depends on the script you would like to use for the slider.
Basically you reduce the acamas_featured_content() to:
function acamas_featured_content() {
if (is_home()) { ?>
<div id="home-insert">
<!-- enter your code here -->
</div><!-- #home-insert -->
<?php }
}
add_action('thematic_belowheader','acamas_featured_content');
And you need to add an action containing the needed script to wp_head.
This is an example I'm using for one of my new projects (using the S3 slider):
<div id="slider">
<ul id="sliderContent">
<li class="sliderImage">
<img src="<?php thm_bloginfo('stylesheet_directory', TRUE) ?>/images/underconstruction.jpg" alt="Programming Thematic4You" />
<span class="top"><strong>Programming Thematic4You</strong><br />Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</span></li>
<li class="sliderImage">
<img src="<?php thm_bloginfo('stylesheet_directory', TRUE) ?>/images/underconstruction.jpg" alt="Explaining Thematic4You" />
<span class="top"><strong>Explaining Thematic4You</strong><br />At vero eos et accusam et justo duo dolores et ea rebum.</span></li>
<li class="sliderImage">
<img src="<?php thm_bloginfo('stylesheet_directory', TRUE) ?>/images/underconstruction.jpg" alt="Inspiring Thematic4You" />
<span class="top"><strong>Inspiring Thematic4You</strong><br />Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</span></li>
<li class="sliderImage">
<img src="<?php thm_bloginfo('stylesheet_directory', TRUE) ?>/images/underconstruction.jpg" alt="Designing Thematic4You" />
<span class="top"><strong>Designing Thematic4You</strong><br />Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</span></li>
<li class="sliderImage">
<img src="<?php thm_bloginfo('stylesheet_directory', TRUE) ?>/images/underconstruction.jpg" alt="Designing Thematic4You" />
<span class="top"><strong>Designing Thematic4You</strong><br />At vero eos et accusam et justo duo dolores et ea rebum.</span></li>
</ul>
</div>
Btw.: thm_bloginfo requires a current SVN copy of thematic. And I'm not using the trick with the empty DIV closing after the last image causing a XHTML error. Instead I'm using a 1px image with no text after as the last
which won't show up.
Let me know a slider / script in case you need more help.
Chris