/**
 * MooFlow - Image gallery
 *
 * Dependencies: MooTools 1.2
 *
 * @version			0.2.1
 *
 * @license			MIT-style license
 * @author			Tobias Wetzel <info [at] outcut.de>
 * @copyright		Author
 * @docmentation	http://outcut.de/MooFlow/Docmentation.html
 */ 

var myMooFlowPage = {
	
	start: function() {
	
		var mf = new MooFlow($('MooFlow'), {

			bgColor: '',
			startIndex: 1,

			useCaption: true,
			useSlider: true,

			onClickView: function(obj) { window.location.href = obj.href; }
		});		
	}	
};
	
window.addEvent('domready', myMooFlowPage.start);