В конце кода отсутствует фигурная скобка.
domReady(
function()
{
var instanceOne = new ImageFlow();
instanceOne.init(
{
ImageFlowID :'CGI-Archive',
startID : 3,
reflectionPNG : true,
onClick : function() {
return hs.expand(
this,
{
src : this.getAttribute('longdesc'),
outlineType : 'rounded-white',
fadeInOut : true,
captionText : this.getAttribute('alt')
}
);
}
}
);
} // <!-- this one is missing in your code
); // EDIT: missing closing bracket here as well
еще одна вещь, которая не так ...
это:
<script type="text/javascript">var myScript = Asset.javascript(source[, properties]);</script>
, вероятно, следует читать:
<script type="text/javascript">var myScript = Asset.javascript(source, [properties]);</script>
или
<script type="text/javascript">var myScript = Asset.javascript(source, properties);</script>