<script type="text/javascript">
window.onload = function(){chgMonthlyPic();}
function chgMonthlyPic()
{
var month = new Array(12);
month[0] = "images/fm/JanuaryPicture.jpg";
month[1] = "images/fm/FebruaryPicture.jpg";
month[2] = "images/fm/MarchPicture.jpg";
month[3] = "images/fm/AprilPicture.jpg";
month[4] = "images/fm/MayPicture.jpg";
month[5] = "images/fm/JunePicture.jpg";
month[6] = "images/fm/JulyPicture.jpg";
month[7] = "images/fm/AugustPicture.jpg";
month[8] = "images/fm/SeptemberPicture.jpg";
month[9] = "images/fm/OctoberPicture.jpg";
month[10] = "images/fm/NovemberPicture.jpg";
month[11] = "images/fm/DecemberPicture.jpg";

var d = new Date();
document.getElementById ("monthlyPic").src = month[d.getMonth()];
/*** I left a space in the line above between ById and first ( just so yahoo would not drop the code, could take that space out ***/
}
</script>

