var todayArray = [7];
    todayArray[0] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/sundayschedule.html'>    </iframe>";
    todayArray[1] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/mondayschedule.html'>    </iframe>";
    todayArray[2] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/tuesdayschedule.html'>   </iframe>";
    todayArray[3] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/wednesdayschedule.html'> </iframe>";
    todayArray[4] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/thursdayschedule.html'>  </iframe>";
    todayArray[5] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/fridayschedule.html'>    </iframe>";
    todayArray[6] = "<iframe class='schedule' height=327px width=99% scrolling='no' frameborder=0 src='Resources/External/Schedules/saturdayschedule.html'>  </iframe>";

function scheduleWrite () {
    var currentTime = new Date();
    var today = currentTime.getDay();
    document.write (todayArray[today]);
};