Hmm. Try replacing the following and see what happens:
I just replaced $ with jQuery in the block of JS
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider({
effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
slices:15,
animSpeed:500, //Slide transition speed
pauseTime:5000,
startSlide:0, //Set starting Slide (0 index)
directionNav:true, //Next and Prev
directionNavHide:false, //Only show on hover
controlNav:false //1,2,3...
});
$(document).ready(function() {
$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square'});
});
});
</script>
with this:
<script type="text/javascript">
jQuery(window).load(function() {
jQuery('#slider').nivoSlider({
effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
slices:15,
animSpeed:500, //Slide transition speed
pauseTime:5000,
startSlide:0, //Set starting Slide (0 index)
directionNav:true, //Next and Prev
directionNavHide:false, //Only show on hover
controlNav:false //1,2,3...
});
jQuery(document).ready(function() {
jQuery("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square'});
});
});
</script>