Hi Mike, Finally, it's working! Thanks :)
Regards, Sultan Arefin On Oct 3, 1:29 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Thanks for helping me out. I've added: > > <script type="text/javascript" src="jquery-1.2.6.min.js"></script> > > > Still not working, can you please check? > > > Regards, > > Sultan Arefin > > Hi Sultan, > > You need to change this line: > > $('#slideshow1').cycle(); > > to this: > > $(document).ready(function() { > $('#slideshow1').cycle(); > > }); > > Here's an explanation: > > http://docs.jquery.com/Tutorials:Introducing_$(document).ready() > > Mike