//
//
var aTruckInfo = new Array;
//
function TruckInfo( tid, name, description )
{
	this.m_tid 			= tid;
	this.m_name			= name;
	this.m_description	= description;
	// Stores route to be displayed
	this.m_route		= null;

	// Register
	aTruckInfo[ this.m_tid ] = this;
}
//
// Get truck info by ID
//
function GetTruckInfoById( tid )
{
	for ( var oId in aTruckInfo )
	{
		var o = aTruckInfo[oId];
		if ( o != null && o.m_tid == tid )
			return o;
	}
	return null;
}
//
//
//



