﻿var WeatherMain = function($) {

	var config = {
		weatherTableElement: '.weather-period table'
	};

	return {
		/**
		* Initializes the logic for the current page
		* to be called on $(document).ready
		*/
		OnReady: function() {
		},
		
		AddEvenOddClasses: function() {
			$(config.weatherTableElement).find('td:even').addClass('even');
			$(config.weatherTableElement).find('td:odd').addClass('odd');
		}
	}
} (jQuery);
