Janis,
Here is the code that I modified from the demo page:
***********************************************************
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="imagetoolbar" content="no" />
<title>FancyBox 1.3.1 | Demonstration</title>
<script type="text/javascript" src="
http://code.jquery.com/
jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="./fancybox/
jquery.mousewheel-3.0.2.pack.js"></script>
<script type="text/javascript" src="./fancybox/
jquery.fancybox-1.3.1.js"></script>
<link rel="stylesheet" type="text/css" href="./fancybox/
jquery.fancybox-1.3.1.css" media="screen" />
<link rel="stylesheet" href="style.css" />
<script type="text/javascript">
$(document).ready(function() {
/*
* Examples - images
*/
$("a[rel=example_group]").fancybox({
'index' : 1,
'transitionIn' : 'none',
'transitionOut' : 'none',
'titlePosition' : 'over',
'titleFormat' : function(title, currentArray, currentIndex,
currentOpts) {
return '<span id="fancybox-title-over">Image ' + (currentIndex +
1) + ' / ' + currentArray.length + (title.length ? ' ' +
title : '') + '</span>';
}
}).trigger('click');
});
</script>
</head>
<body>
<div id="content">
<h1>fancybox <em>v1.3.1</em></h1>
<p>This is a demonstration. <a href="
http://fancybox.net">Home page</
a></p>
<hr />
<p>
Image gallery (ps, try using mouse scroll wheel)<br />
<a rel="example_group" href="./example/7_b.jpg" title="Lorem ipsum
dolor sit amet"><img alt="" src="./example/7_s.jpg" /></a>
<a rel="example_group" href="./example/8_b.jpg" title=""><img alt=""
src="./example/8_s.jpg" /></a>
<a rel="example_group" href="./example/9_b.jpg" title=""><img alt=""
src="./example/9_s.jpg" /></a>
</p>
</div>
<div><p> </p></div>
</body>
</html>
***********************************************************
If you run this, the third image in the set opens, not the image at
'index' : 1.
I must be doing something wrong...
Mike