jquery slider stopped working
My slider I had been using with Thesis theme in Wordpress suddenly stopped working on all my sites that use it. Basically the images are there but not cycling through. They are just stacked on top of each other. Here's the site...
http://www.bluesguitarinsider.com
I'm not a js expert so I'm clueless.
The code looks like this...
<?php
}}
add_action('thesis_hook_after_header','slideshow');
function slide_script() {
echo "\n\n";
?>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.2.72.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' //You can change transition effects here.
});
});
</script>
<?php
}
And I think it might have something to do with the js cycle plugin. When I check the link I get an error.
Can anyone help please?