The order of the scripts in the <head> section is probably causing problems - try ordering them like this (untested)
Code:
<SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></SCRIPT>
<SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js"></SCRIPT>
<script type="text/javascript" src="/jquery.magnifier.js">
/***********************************************
* jQuery Image Magnify- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
<SCRIPT type=text/javascript>
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</SCRIPT>
Also, the Scroller Body text file you attached isnt a well formatted web page.
Please make sure that you structure your web pages properly to give them a fighting chance of working properly.
Here are the basics;
Code:
<html>
<head>
<!-- javascripts go here -->
<!-- CSS goes heres -->
</head>
<body>
<!-- HTML content markup goes here -->
</body>
</html>
The text file you supplied shows CSS in the <body> area that should go in the <head> section.
Bookmarks