Hey everybody,

scrollable worked fine on my site, but now it gives me this error:

when starting thread
maximun thread recursion depth exceeded


Strange thing is that I didn't change anything.

In my header i have this:

<script type="text/javascript" src=http://cdn.jquerytools.org/1.2.4/full/jquery.tools.min.js">

and here is the code I'm using for scrollable

<script type="text/javascript">
$(document).ready(function() {
	
$("div.scrollable").scrollable({speed: 1000, circular:true}).autoscroll({
	interval: 5700		
});	
});

When I delete the circular:true, everything works fine. Any ideas how to solve this problem?

Thanks.