What happens if you reverse the order of the links to these scripts ?
This is what you have now:
Code:
<script type="text/javascript" src="flexdropdown.js"></script>
<script type="text/javascript" src="fadeslideshow.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Try to put jquery on top like this
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="flexdropdown.js"></script>
<script type="text/javascript" src="fadeslideshow.js"></script>
Bookmarks