File: /home/httpd/html/hardercopy.com/wp-content/themes/hardcopy.com/sidebar.php
<div id="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Index Sidebar') ) : ?>
<?php include (TEMPLATEPATH . '/simple_recent_comments.php'); ?>
<div id="block">
<h3>More Featured Videos:</h3>
<div id="recentvids">
<?php query_posts('category_name=featured&showposts=5'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="blockvids">
<a href="<?php the_permalink() ?>" class="thetip" Title="<?php the_title() ?> :: Click here to view this video"><?php the_excerpt(); ?></a>
<a href="<?php the_permalink() ?>"><?php the_title() ?></a>
<p><?php the_content_rss('', TRUE, '', 15); ?></p>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
</div>
<div id="commentsblock">
<?php src_simple_recent_comments('8', '180', '<h3>Recent Comments:</h3>', '') ?>
</div>
<div id="ratingsblock">
<h3>Highest Rated Videos:</h3>
<?php if (function_exists('get_highest_rated')): ?>
<ul>
<?php get_highest_rated(); ?>
</ul>
<?php endif; ?>
</div>
<?php endif; ?>
</div>