/*

Name:       ImageFlow

Version:    1.2.1 (August 10 2009)

Author:     Finn Rudolph

Support:    http://finnrudolph.de/ImageFlow



Licence:    ImageFlow is licensed under a Creative Commons 

            Attribution-Noncommercial 3.0 Unported License 

            (http://creativecommons.org/licenses/by-nc/3.0/).



            You are free:

                + to Share - to copy, distribute and transmit the work

                + to Remix - to adapt the work



            Under the following conditions:

                + Attribution. You must attribute the work in the manner specified by the author or licensor 

                  (but not in any way that suggests that they endorse you or your use of the work). 

                + Noncommercial. You may not use this work for commercial purposes. 



            + For any reuse or distribution, you must make clear to others the license terms of this work.

            + Any of the above conditions can be waived if you get permission from the copyright holder.

            + Nothing in this license impairs or restricts the author's moral rights.



Credits:    This script is based on Michael L. Perrys Cover flow in Javascript [1].

            The reflections are generated server-sided by a slightly hacked version 

            of Richard Daveys easyreflections [2] written in PHP. The mouse wheel 

            support is an implementation of Adomas Paltanavicius JavaScript mouse 

            wheel code [3]. It also uses the domReadyEvent from Tanny O'Haley [4].



            [1] http://www.adventuresinsoftware.com/blog/?p=104#comment-1981

            [2] http://reflection.corephp.co.uk/v2.php

            [3] http://adomas.org/javascript-mouse-wheel/

            [4] http://tanny.ica.com/ICA/TKO/tkoblog.nsf/dx/domcontentloaded-for-browsers-part-v

*/






/* Create ImageFlow instances when the DOM structure has been loaded */

domReady(function()

{

	var instanceOne = new ImageFlow();

	instanceOne.init({ ImageFlowID:'myImageFlow' });
	
	var example_13 = new ImageFlow();
example_13.init({ ImageFlowID: 'example_13', reflectionGET: '&bgc=009cec' });

});
