﻿/* Create ImageFlow instances when the DOM structure has been loaded */
domReady(function()
{

var instanceOne = new ImageFlow();
	instanceOne.init({
	  reflectPath: '/tools/ImageFlow_1.3.0/',
	  circular: true,
	  imagePath: '../../userdata/MediaManager/files/',
	  ImageFlowID:'imageFlowGallery', 
	  onClick: function() { window.open(this.url, '_blank', 'width=500,height=500,left=200,top=200');  }
	});

});

