// JavaScript Document

var Main = {

	setup: function () {
		Main.doNothing();
	},
	
	doNothing: function() {
	}
	
};
