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

function LiveBoxscoreDataModel() {
	
	var _self = this;

	//-------------------------------
	// Constants
	//-------------------------------
	
	LiveBoxscoreDataModel.prototype.DATA_COMPLETE = "data_complete";
	
	//-------------------------------
	// Properties
	//-------------------------------
	
	var _data;
	
	//-------------------------------
	// Constructor
	//-------------------------------
	
	$j(function() {});
	
	//-------------------------------
	// Public Methods
	//-------------------------------
	
	_self.load = function(path) {
		$j.ajax({ url: path.url, dataType: "xml", success: function(data) {
				$j(_self).trigger(_self.DATA_COMPLETE, [data, path.type]);
			}
		});
	}
	
	//-------------------------------
	// Private Methods
	//-------------------------------

	//-------------------------------
	// Listeners
	//-------------------------------

}


