var imgLib = new Array(4);
	imgLib[0]='images/bob.jpg';
	imgLib[1]='images/randy.jpg';
	imgLib[2]='images/don.jpg';
	imgLib[3]='0607.jpg';

var speachLib = new Array(4);
	speachLib[0]='<p align="justify">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Let me introduce myself, I am R. W. Bro. Robert J. Page, District Deputy Grand Master, a member of Great Western Lodge No. 47.<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As the District Deputy Grand Master for the Windsor District, I want to welcome you to our official Windsor District website. I do hope that you have an opportunity to spend some time viewing this site and expanding your interests of Masonry.<br /><a href="bob.php" class="readmore">Read more</a>'
        speachLib[1]='<p align="justify">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As the District Deputy Grand Master for the Windsor District, I want to welcome you to our official "Windsor District website. I do hope that you have a opportunity to spend some time viewing this site and expanding your interests of Masonry. Windsor District has nine Masonic Lodges who all meet on various nights in the Masonic Temple at the corner of Ouellette Ave. and Erie Street in downtown Windsor Ontario. We as a district pride ourselves in the charitable giving within our immediate community and area. Our neighboring Erie District also has nine Masonic Lodges of which we keep in close fraternal contact with and many mutual visitations take place between the two districts during the year. The District Deputy Grand Master for Erie District is R.W. Bro. Roger R. Reid.   <a href="http://www.eriemasons.org">eriemasons.org</a><br /><br /><a href="ddgm.php" class="readmore">Read more</a>';
	speachLib[2]='<p align="justify">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As the District Deputy Grand Master for the Windsor District, I welcome you to our official “Windsor District” website.  I do hope that you have an opportunity to spend some time viewing this all new website.  </p><p align="justify">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Windsor District has nine Masonic lodges who all meet on various nights in the Masonic Temple at the corner of Ouellette Avenue and Erie Street in Windsor, Ontario.  We as a district pride ourselves in the charitable giving within our immediate community and area.</p><p align="justify">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Our neighbouring Erie District also has nine Masonic lodges of which e keep in close fraternal contact with and have many mutual visitations between the two districts.</p><br /><br /><a href="0708.php" class="readmore">Read more</a>';
	speachLib[3]='<p align="justify">The future has yet to be written<br /><br /><br /><br /><br /><br /><br /><br /><a href="0607.php" class="readmore">Read more</a>';

var currentddgm=0;

function previousDDGM() {
if (!document.all&&!document.getElementById)
            return;
  if (currentddgm < (imgLib.length-1))
    currentddgm+=1;
  else
    currentddgm=0;
  document.getElementById("speachLib").innerHTML=speachLib[currentddgm];
  document.getElementById("imgLib").src=imgLib[currentddgm];
}

	
function nextDDGM() {
if (!document.all&&!document.getElementById)
            return;
  if (currentddgm == 0)
    currentddgm=0;
  else
    currentddgm-=1;
  document.getElementById("speachLib").innerHTML=speachLib[currentddgm];
  document.getElementById("imgLib").src=imgLib[currentddgm];
}
