function monPhoto() {

	var today = new Date();
	var month = today.getMonth();
	month++;
	jan = new Image();
	feb = new Image();
	mar = new Image();
	apr = new Image();
	may = new Image();
	jun = new Image();
	jul = new Image();
	aug = new Image();
	sep = new Image();
	oct = new Image();
	nov = new Image();
	dec = new Image();


	jan.src = "photos/month01.jpg";
	feb.src = "photos/month02.jpg";
	mar.src = "photos/month03.jpg";
	apr.src = "photos/month04.jpg";
	may.src = "photos/month05.jpg";
	jun.src = "photos/month06.jpg";
	jul.src = "photos/month07.jpg";
	aug.src = "photos/month08.jpg";
	sep.src = "photos/month09.jpg";
	oct.src = "photos/month10.jpg";
	nov.src = "photos/month11.jpg";
	dec.src = "photos/month12.jpg";


	if (month == 1) { document.month_photo.src = jan.src; }
	if (month == 2) { document.month_photo.src = feb.src; }
	if (month == 3) { document.month_photo.src = mar.src; }
	if (month == 4) { document.month_photo.src = apr.src; }
	if (month == 5) { document.month_photo.src = may.src; }
	if (month == 6) { document.month_photo.src = jun.src; }
	if (month == 7) { document.month_photo.src = jul.src; }
	if (month == 8) { document.month_photo.src = aug.src; }
	if (month == 9) { document.month_photo.src = sep.src; }
	if (month == 10) { document.month_photo.src = oct.src; }
	if (month == 11) { document.month_photo.src = nov.src; }
	if (month == 12) { document.month_photo.src = dec.src; }
}