/**
 * Boxes - We've got to have a main method, so here it is. All the real
 * work will occur in BestBox. This class is complete!!! Do not add
 * add anything here!
 *
 * @author Michael Norton, Nancy Harris
 * @version 4/11/2007
 *
 * Acknowledgements: ...
 */
public class Boxes
(
	public static void main( String[] args )
	{
		BestBox myBox;
		myBox = new BestBox();
		myBox.start();

	} // method main

}