--- pycalendar.py	Thu Aug  7 00:38:36 2003
+++ pycal.py	Tue Oct 28 13:36:31 2003
@@ -149,11 +149,11 @@
 
 
         # create the calendar
-        calendar.setfirstweekday(calendar.SUNDAY)
+        calendar.setfirstweekday(calendar.MONDAY)
         cal = calendar.monthcalendar(view[0], view[1])
         
         # insert the days of the week
-        cal.insert(0, ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"])
+        cal.insert(0, ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"])
 
         # figure out next and previous links by taking the dict of yyyymm
         # strings we created, turning it into a list, sorting them,
@@ -239,7 +239,7 @@
         cal2.append("<td align=\"right\">" + self._fixlink(cal[0][2]) + "</td>")
         cal2.append("</tr>")
 
-        cal2.append("<tr>%s</tr>" % "".join([self._fixweek(m) for m in cal[1]]))
+        cal2.append("<tr class=\"CalendarWeek\">%s</tr>" % "".join([self._fixweek(m) for m in cal[1]]))
 
         for mem in cal[2:]:
             mem = [self._fixday(m) for m in mem]
