Making Sunday the first day of the week

Howdy all,

Please believe me when I stay ‘I tried’. And the worst things is, that this is probably the easiest things to fix, but…

I’m using this great XML Calendar for a friend’s band’s website. It works really well, but I can’t seem to change it so Sunday is the first day of the week.

Below is the main code of the calendar, so if any kind soul could give it a looksee, I’d appreciate any help given.

Thank in advance,

Asparagus

System.useCodePage = true;
function leapYear (Year) {
        if (((Year % 4) == 0) && ((Year % 100) != 0) || ((Year % 400) == 0)) {
            return (true);
        } else {
            return (false);
         }
    }
    function daysInMonth (month, year) {
        var daysinmonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
        if (leapyear(year) == true) {
            daysinmonth[1] = 29;
        }
        return (daysinmonth[month]);
    }
    function displayMonth(month, year)
{    
    var d = new Date();
    var yspan = 0;
    var xspan = 0;
    d.setFullYear(year, month, 1);
    var firstDay = d.getDay();
    var i = 1;
    while (daysInMonth(month, year) >= i)
    {
        d.setDate(i);
        attachMovie("day", "date" + i, i);
        if (d.getDay() != 0)
        {
            this["date" + i]._x = startx + w * (d.getDay() - 1);
        }                                      
        else
        {
            this["date" + i]._x = startx + w * (d.getDay() + 6);
        } // end if
        this["date" + i]._y = starty + h * yspan;
        this["date" + i].date = d.getDate();
        this["date" + i].weekday = weekArray[d.getDay()];
        this["date" + i].year = d.getFullYear();
        this["date" + i].month = monthArray[month];
        this["date" + i].cMonth = month + 1;
        if (curDay == d.getDate() && curMonth == d.getMonth() && curYear == d.getFullYear())
        {
            this["date" + i].gotoAndStop(2);
        } // end if
        var k = 0;
        while (k < t_xml.length)
        {
            if (d.getDate() + "." + (d.getMonth() + 1) + "." + d.getFullYear() == t_xml[k].attributes.dates)
            {
                this["date" + i].gotoAndStop(3);
                this["date" + i].nr = k;
            } // end if
            k++;
        } // end while
        if (d.getDay() == 0)
        {
            yspan++;
        } // end if
        i++;
    } // end while
    current = monthArray[month] + " - " + year;
    currentLength = daysInMonth(month, year);
    if (d.getDay() != 0)
    {
        var temp1 = 0;
        var i = d.getDay();
        while (i < 7)
        {
            attachMovie("ghost", "lastghost" + i, i + 50);
            this["lastghost" + i]._x = startx + w * i;
            this["lastghost" + i]._y = starty + h * yspan;
            this["lastghost" + i].date = ++temp1;
            i++;
        } // end while
    } // end if
    if (firstDay == 0)
    {
        firstDay = 7;
    } // end if
    var i = 1;
    while (i < firstDay - 1)
    {
        attachMovie("ghost", "firstghost" + i, i + 100);
        this["firstghost" + i]._x = startx + w * i;
        this["firstghost" + i]._y = starty;
        if (month != 0)
        {
            this["firstghost" + i].date = daysInMonth(month - 1, year) - (firstDay - 2 - i);
        }
        else
        {
            this["firstghost" + i].date = daysInMonth(11, year - 1) - (firstDay - 2 - i);
        } // end if
        i++;
    } // end while
}
    function cleanUp () {
        for (var i = 0;(currentLength + 1) >= i;i++) {        
            removeMovieClip ("date" + i);
            removeMovieClip ("lastghost" + i);
            removeMovieClip ("firstghost" + i);            
        }
        anzeige_txt.text = "";
    }
        
    termin_xml = new XML();
    termin_xml.ignoreWhite = true;
    termin_xml.load("events.xml");
    news_txt.htmlText = "<font color='#ff0000'>Loading...</font>";
    fscommand ("allowscale", false);
    stop();
    
    termin_xml.onLoad = function(status) {
        if (status) {
            news_txt.htmlText = "";
            t_xml = termin_xml.firstChild.childNodes;         
            startx = 12;
            starty = 37;
            w = 17;
            h = 17;
            monthArray = ["JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER"];
            weekArray = ["SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"];
            var d = new Date ();    
            currentMonth = d.getMonth();
            currentYear = d.getFullYear();
            curDay = d.getDate();
            curWDay = d.getDay();
            curMonth = d.getMonth();
            curYear = d.getFullYear();  
            displayMonth(currentMonth, currentYear);
            anzeige_txt.text = weekArray[curWDay] + "
" + (((((curDay + " ") + monthArray[curMonth]) + " - ") + curYear) );
        } else {
            news_txt.htmlText = "<font color='#ff0000'>Error during the transmission!</font>";
        }
    }