if (index == undefined) { index = 0;}
var myMooFlowPage = {
	start: function(){
		/* MooFlow instance with the complete UI and White Skin */
		var mf = new MooFlow($('MooFlow'), {
		startIndex: Number(index),
		factor:'100',
			bgColor: '#fff',
			useSlider: true,
			useAutoPlay: true,
			useCaption: true,
			useResize: true,
			useMouseWheel: true,
			useKeyInput: true,
			useViewer: true,
			onClickView: function(obj) {
				window.location=obj.href;
				
			}
		});
	}
};
window.addEvent('domready', myMooFlowPage.start);