A simple calendar

This is a simple calendar meant to show you day of the date (Mon, Tue, etc). You can never find it online elsewhere...

by manoj

HTML

<script src="http://dansnetwork.com/mootools/events-calendar/download/mooECal.js"></script>
<link rel="stylesheet" href="http://dansnetwork.com/mootools/events-calendar/download/mooECal.css">
<div id="simple_calendar"></div>

JavaScript

var calObj;
window.addEvent('domready', function() {
    var d = new Date();
    var sDate = (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
    calObj = new Calendar({
        calContainer: 'simple_calendar',
        newDate: sDate,
        cEvents: []
    });
});