<?php 
/**
 * @package Featured articles Lite - Wordpress plugin
 * @author CodeFlavors ( codeflavors[at]codeflavors.com )
 * @version 2.4
 * 
 * For more information on FeaturedArticles template functions, see: http://www.codeflavors.com/documentation/display-slider-file/
 */
?>
<?php the_slideshow_title();?>
<div class="FA_overall_container_smoke FA_slider <?php the_slider_color();?>" style="<?php the_slider_width();?>"  id="<?php echo $FA_slider_id;?>">	
	<div class="FA_featured_articles" style="<?php the_slider_height();?>">
	<?php foreach ($postslist as $post):?>
		<div class="FA_article <?php the_fa_class();?>" style="<?php the_fa_background(); ?>; <?php the_slider_height();?>">
        	<?php fa_content_wrapper('<div class="FA_wrap">');?>	
				<?php the_fa_title('<h2>', '</h2>');?>
                <?php the_fa_date('<span class="FA_date">', '</span>');?>
                <?php the_fa_content('<p>', '</p>');?>
                <?php the_fa_read_more();?>
            <?php fa_content_wrapper('</div>');?>			
		</div>
	<?php endforeach;?>		
    <a href="#" title="<?php __('Previous post');?>" class="FA_back">&lt;</a>
    <a href="#" title="<?php __('Next post');?>" class="FA_next">&gt;</a>
    </div>		
</div>