function getMondays() {
var d = new Date(),
month = d.getMonth(),
mondays = [];
d.setDate(1);
while (d.getDay() !== 1) {
d.setDate(d.getDate() + 1);
}
while (d.getMonth() === month) {
mondays.push(new Date(d.getTime()));
d.setDate(d.getDate() + 7);
}
return mondays;
}