var myMooFlowPage = {

	start: function(){
		/* MooFlow instance with the Milkbox Viewer */
		var mf = new MooFlow($('MooFlow'), {
      startIndex: 2,
			useAutoPlay: true,
			useCaption: true,
			useMouseWheel: true,
			useKeyInput: true,
			useViewer: true,
			onClickView: function(obj){
				Milkbox.showThisImage(obj.href, obj.title + ' - ' + obj.alt);
			}
		});	
    
	}
	
};

window.addEvent('domready', myMooFlowPage.start);