jQuery crossSlide

jQuery crossSlide

Hi,
I,m working on using crossSlide.js as shown at http://www.gruppo4.com/~tobia/cross-slide.shtml and I am not that great at this stuff yet.
This is how things look so far:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title>test</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="s/studio.css" media="screen" />
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="js/jquery.cross-slide.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#show').crossSlide({
fade: 1
}, [
{
src: 'i/1.jpg',
from: '100% 80% 1x',
to: '100% 0% 1.7x',
time: 3
}, {
src: 'i/2.jpg',
from: '../top left',
to: 'bottom right 1.5x',
time: 2
}, {
src: 'i/3.jpg',
from: '100% 80% 1.5x',
to: '80% 0% 1.1x',
time: 2
}
]);
});
</script>


</head>
<body>

<div id="masthead">
<div id="show">loading...</div>
</div>
</body>
</html>

Nothing is happening and perhaps it has to do with the DOM handler or something. Is help possible? Much thanks.
ron