//-------------------------------
// Class
//-------------------------------

function AlertApp() {

	
	var _self = this;

	//-------------------------------
	// Constants
	//-------------------------------
	
	//-------------------------------
	// Properties
	//-------------------------------
	
	var _alertController;
	
	//-------------------------------
	// Constructor
	//-------------------------------
	
	$j(function() {
		_alertController = new AlertController();

	});
	
	//-------------------------------
	// Public Methods
	//-------------------------------
	
	//-------------------------------
	// Private Methods
	//-------------------------------
	
	function init() {
		
	}
	
	//-------------------------------
	// Listeners
	//-------------------------------
}
