I am lost on the cycle plugin. I am trying to make the "featured design" scroll between several different designs, but I can't get the cycle to work. http://www.theotherkevinsmith.com Here is my functions.php file in my child theme:
<?php
function childtheme_scripts() {?>
<?php echo "\n\t" ?>
<script type="text/javascript" charset="utf-8" src="<?php bloginfo('stylesheet_directory'); ?>/library/scripts/jquery-1.3.js"></script>
<script type="text/javascript" charset="utf-8" src="<?php bloginfo('stylesheet_directory'); ?>/library/scripts/jquery.cycle.all.js"></script>
<script type="text/javascript" charset="utf-8" src="<?php bloginfo('stylesheet_directory'); ?>/library/scripts/jquery.easing.1.1.1.js"></script>
<?php echo "\n" ?>
<?php
}
add_action('wp_head', 'childtheme_scripts');
?>
Please help, I am a JQuery dunce.