	var myMooFlowPageGalleryNewPics = {
	
		start: function(){
			
			var div = new Element('div').inject($('mooflowimagesnewpics'), 'top');
			var mf = new MooFlow(div, {
				startIndex: 2,
				offsetY: -100,
				useCaption: false,
				heightRatio: 0.3,
				factor: 90,
				useMouseWheel: false,
				useKeyInput: false,
				useViewer: false,
				onEmptyinit: function(){
					this.loadJSON('ajax/ajax_inc.php?pluginid=00501&task=getimages');
				},
				onClickView: function(obj){
					loader(true);
					setTimeout(function() {
						document.location.href=obj.href;
					},500);
				}
			});
			
		}
		
	};
	
	window.addEvent('domready', myMooFlowPageGalleryNewPics.start);
			