Using Cycle Lite and Lightbox in same HTML doc - can not get both to work?

Using Cycle Lite and Lightbox in same HTML doc - can not get both to work?

Hi there
I have used two jQuery plugins on one html page - Cycle Lite and Lightbox. However, I can only get one plugin to work at one time. With the following code, Cycle Lite works but Lightbox doesn't.

Code in header:
  1. <link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
  2. <script type="text/javascript" src="js/prototype.js"></script>
  3. <script type="text/javascript" src="js/scriptaculous.js?load=effects,builder"></script>
  4. <script type="text/javascript" src="js/lightbox.js"></script>
  5. <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
  6. <script type="text/javascript" src="js/jquery.cycle.lite.1.0.js"></script>

  7. <script type="text/javascript">
  8. $(function(){
  9.     $('#banner').cycle({
  10. timeout: 8000
  11. });
  12. });
  13. </script>
If I remove
  1. <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>

then Lightbox works but Cycle Lite doesn't. So I presume it is a conflict between the javascripts that are loading?


Could someone shed some light on this, please. 

Thanks in advance. H