var myMooFlowPage = {				
	mf: null,
	start: function(){
		$$('#MooFlow img').each(function(e){e.setStyle('display', 'none')});
		this.mf = new MooFlow($('MooFlow'), {
			useAutoPlay: false,
			useSlider: true,
			useCaption: true,
			useResize: true,
			useMouseWheel: true,
			useKeyInput: true,
			startIndex: 0,
			heightRatio: 0.60,
			offsetY: 30,
			factor: 200,
			bgColor: "transparent",
			useViewer: true,
			reflection: 0.4,
			onClickView: function(obj){
				top.location.href='portfolio.php?web='+obj.href;
            }
		});	
	}
};

window.addEvent('domready', myMooFlowPage.start);
