here is what i was talking about: - no jQuery first before you are doing the $.browser stuff - duplicate <title> tags, although that shouldn't do anything but confuse the browser, no break it - rouge </head> tag, that would DEFINITELY be an issue, especially for IE
<html> <head> <title>Dreams Gallery</title> <base target="detail"> <script language="JavaScript"> //jQuery in here </script> <meta http-equiv="Content-Type" content="text/html"> <style type="text/css"> </style> </head> <title>jCarousel</title> <link rel="stylesheet" type="text/css" href="style.css" /> <script src="jquery-1.3.2.min.js"></script> <script src="jcarousellite_1.0.1.pack.js"></script> <script src="captify.tiny.js"></script> <script type="text/javascript"> //jQuery code </script> </head> <body> the html </body> </html>