
function Staff(name, title, url) {
  this.name = name;
  this.title = title;
  this.url = url;
}
  
var course = {
  name : "CS 2521",
  title : "Computer Organization and Architecture"
};

var term = {
  semester : "Spring 2008",
  start : new Day(1, 22, 2008),
  end : new Day(5, 9, 2008),
  holiday : new DayRange(new Day(3, 17, 2008), 5),
  finalDate : new Day(5, 12, 2008),
  finalTime : "1000-1155",
  lectureTimes : "Monday, Wednesday, and Friday at 1100-1150",
  lecturePlace : "HH 302",
  laboratoryTime : "Monday at 1500-1550",
  laboratoryPlace : "MWAH 177"
};

var staff = [
 new Staff("Gary Shute", "Lecturer", "http://www.d.umn.edu/~gshute/home.html"),
 new Staff("Atul Kulkarni", "Assistant", "http://www.d.umn.edu/~kulka053")
];


