dayInfo = new Array;
dayInfo[9] = new Array;
dayInfo[9][4]='<div class="qtitle">The Dovecot Fair</div>The Dovecot Fair is to be held on Saturday 4th September and takes the place of the very popular Packhorse Fair.<br />  <br />  The new venue is Jubilee Park, Bruton, in the shadow of the Dovecot, and the festivities begin at 12pm.<br />  <br />  There will be the usual stage with live music through the afternoon, bar by Bar Humbug, food from the Meadow School, Levant, Bruton United Burgers and other local produce.<br />  <br />  Lots of kids entertainment including circus skills, the giant slide and an art &amp; craft marquee, plus a wide variety of craft and food stalls and car boot sale.<br />  <br />  Don&rsquo;t miss it!!';


function showInfo(thisMonth,thisDay) {
		var diary=document.getElementById('diary');
		if(dayInfo[thisMonth] && dayInfo[thisMonth][thisDay] && dayInfo[thisMonth][thisDay].length) diary.innerHTML = dayInfo[thisMonth][thisDay];
		else diary.innerHTML = "Click on any underlined day to see what's happening. For full details, please view 'Whats on' pages";
}