var domReady = function(handler) { domReadyEvent.add(handler); };
domReadyEvent.init();

/* Create Flow instances when the DOM structure has been loaded */
domReady(function()
{
	var instanceOne = new Flow();
	instanceOne.init({ FlowID:'myFlow',startID:Math.floor(Math.random()*29),reflectionGET: '&cache=1&bgc=ffffff&fade_start=50%&height=30%',reflectionP: 0.2,circular:true,reflections:true,imageFocusM:1.4});
});
