(function($) {

	// Create the page model
	var Index = Page.extend({

		defaults: {
			title: 'Home'
		}

		,initialize: function initialize () {

			// Create instances of whatever modules we need and 
			// apply them as object properties

			this.stage = new Mainstage({
				slideshow: true
				,images: true
			});

			$('.shellFooter').css({'margin-top': 338});
		}
	});

	// Create a new instance of the page
	var index = new Index();

	// Set the page as a property on the Ryerson object
	Ryerson.page = index;

}(jQuery));
