IN Your Head Section <?php wp_enqueue_script('jquery'); wp_enqueue_script('jquery-ui-core'); wp_enqueue_script('jquery-ui-tabs'); wp_head(); ?> <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/easySlider1.5.js"></script> <script type="text/javascript"> $j=jQuery.noConflict(); // Use jQuery via $j(...) $j(document).ready(function(){ $j("#slider").easySlider({ auto: true, continuous: true }); }); </script> IN YOUR BODY SECTION <div id="slider"> <ul> <?php query_posts('showposts=3&category_name=Featured'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php $parent_title = get_the_title($post->ID); ?> <li> <div class="slide-con-left"> <h2>Feature stories</h2> <h3><a href="<?php the_permalink()?>"><?=substr($parent_title,0,28); ?><? if(strlen($parent_title) > 28) echo '...'; ?></a></h3> <?php the_excerpt(); ?> </div> <div class="slide-con-right" align="center"><img src="<?php bloginfo('template_url'); ?>/images/ebook-image.png" alt="Ebook" /></div> </li> <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?> </ul> </div>