public class SemesterUtilities
{

   public static String startingMonth (Sessions.Session semester)
	 {
	   String  month;
		if (semester == Sessions.Session.SPRING) month = "january";
		else if (semester == Sessions.Session.FALL) month = "august";
		else month = "may";
		
		return month;
	 }
	 }
	  
  