// month offset by 1 as first image shown Dec 2011

function insertThisMonthsCartoon (){
	strText = '<div class="imgcaption"\>Contributed by our resident<\/div\><img class="imagewithcaption" src="images/cartoons\/2011\/John_A_web\/';
	var today = new Date();
	var curr_month = 1+ today.getMonth();
	strText += "JA0" + curr_month + ".jpg";
	strText += '" alt="" title="This month\'s cartoon!"\><div class="imgcaption"\>cartoon laureate - John Anscombe<\/div\>';
	document.getElementById('cartoonWithCaption').innerHTML = strText;
}
