Análise JavaScript JSON Date no IE7 / IE8 retorna NaN

Estou analisando uma data de um feed de evento JSON, mas a data mostra "NaN" no IE7 / 8:

// Variable from JSON feed (using JQuery's $.getJSON)
var start_time = '2012-06-24T17:00:00-07:00';

// How I'm currently extracting the Month & Day
var d = new Date(start_time);
var month = d.getMonth();
var day = d.getDate();

document.write(month+'/'+day);// "6/24" in most browsers, "Nan/Nan" in IE7/8

O que estou fazendo de errado? Obrigado!

questionAnswers(5)

yourAnswerToTheQuestion