/*******************************************************************
 Name: Trevor Spalt
 Date: March 12, 2007
 Section: 2
 Lab: PA2
/*******************************************************************
 * This enum class simply makes a enum type for each of the four suits.
 * This allows the deck method to use these four different types 
 * efficiently
 */
   public enum Suit
   {  
		SPADE, DIAMOND, HEART, CLUB
   }// end Suit