/*jslint white: true, browser: true, onevar: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: true */
/*global $: false, window: false */

/********
	Use to script your SMS pages.
********/

"use strict";

window.NAME = {
	init: function () {
		// Initial method calls and properties
	},
	
// Other methods
	methods: function () {

	}
};

$(document).ready(function () {
	window.NAME.init();
});
