(function(){
	var weatherWidget = new GalleryMover(
											 Dom.get("downEather"), 		//prev button
											 Dom.get("upEather"),			//next button
											 Dom.get("weatherMoveCol"),		//row element	
											 207,							//holder window size (animation track)							
											 'weatger-widget-ent',			//row entit className							
											 'up',						//next move gallery direction
											 1								//animation duration
										); 							
										 
	Ev.addListener(weatherWidget.prevButton,'click',weatherWidget.movePrevious);
	Ev.addListener(weatherWidget.nextButton,'click',weatherWidget.moveNext);
})();



