/* Create ImageFlow instances when the DOM structure has been loaded */
domReady(function()
{
	var instanceOne = new ImageFlow();
	instanceOne.init({
		ImageFlowID:		'myImageFlow',
		aspectRatio:        2.5,          /* Aspect ratio of the ImageFlow container (width divided by height) */
		circular:           false,          /* Toggle circular rotation */
		imageCursor:        'pointer',      /* Cursor type for all images - default is 'default' */
		imageFocusMax:      3,              /* Max number of images on each side of the focussed one */
		imagesHeight:       0.75,           /* Height of the images div container in percent */
		reflections:        true,           /* Toggle reflections */
		reflectionGET:      '&bgc=ffffff&height=30%&fade_start=20%',             /* Pass variables via the GET method to the reflect_.php script */
		reflectionPNG:      false,
		reflectionP:        0.3,            /* Height of the reflection in percent of the source image */
		reflectPath:        '/js/',             /* Path to the reflect_.php script */
		startID:            3,
		onClick: function() { return hs.expand(this, { src: this.getAttribute('longdesc'), captionText: this.getAttribute('alt') }); }
//		onClick: function() { return hs.expand(this, config1); } 

});
});
