/*
* Copyright(c) 2008
*
*/

// create application
fds = function() {

	// do NOT access DOM from here; elements don't exist yet

	// private variables

	// private functions

	// public space
	return {
		// public properties, e.g. strings to translate

		// public methods
		init : function() {
			//fds.behaviour.init();
			fds.live.init();
		}

	}
}(); // end of app

// end of file