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

function AlertController() {

	
	var _self = this;

	//-------------------------------
	// Constants
	//-------------------------------
	
	//-------------------------------
	// Properties
	//-------------------------------

	var _alertView;
	
	//-------------------------------
	// Constructor
	//-------------------------------
	
	$j(function() {
		_alertView = new AlertView();
		
		$j(_alertView).bind(_alertView.CLOSE, onAlertClose);
		init();

	});
	
	//-------------------------------
	// Public Methods
	//-------------------------------
	
	//-------------------------------
	// Private Methods
	//-------------------------------
	
	function init() {
		var data = { 	"type" : "", 
						"content" : "<h2>Chat Live with Greg Oden at 7:15pm pre-game.</h2> We will open up the chat 15 minutes early. <a href='http://www.iamatrailblazersfan.com/GamesPagesRoot/tabid/177/IamaGameId/383/Default.aspx'>Click here</a> for the chat page." }
		
		_alertView.deploy(data)
	}
	
	//-------------------------------
	// Listeners
	//-------------------------------
	
	function onAlertClose(event) {
		_alertView.exit();
	}
}
