(function(){
	
	var weather = window.weather = {
		 
		init: function(){

		},
  		
  		get: function(){
			
  		},
		
		set: function(){
		
		},
		
		show: function(){
		
			/* Setup fade animations. */
			$('.weather').each(function(){
				$(this).show(); //"clip", { direction: "vertical" }, 500);
			});
			
  		}

	};
	
})();

