<!-- Begin

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS



var topspacing		= "10"		// NUDGE SIDEBAR DOWN
var sidewidth		= "175"		// SIDEBAR WIDTH

var showRimage		= "no"		// SHOW A RANDOM SIDEBAR IMAGE
var Rimagephrase	= "no"		// SHOW PHRASE UNDER RANDOM IMAGE
var linkedR		= "index.aspx"	// RANDOM IMAGE PAGE LINK
var randomPics		= "7"		// TOTAL AVAILABLE RANDOM IMAGES

var spacing		= "10"		// NUDGE SIDEBAR DOWN



// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br />');

document.write('<table cellpadding="0" cellspacing="0" border="0" class="notewidth"><td class="note-title">');

document.write('MILE Programs<br />');

document.write('</td></tr><tr><td align="left" class="note-center">');

document.write('For more details, you may click on any link below...<br />');

document.write('</td></tr><tr><td align="left" class="note-text">');

document.write('<a href="superintendents.aspx" class="sidelink-left" target="_top">Superintendents</a><br />');

document.write('<br /><a href="schoolboard.aspx" class="sidelink-left" target="_top">Board Members</a><br />');

document.write('<br /><a href="principals.aspx" class="sidelink-left" target="_top">Principals</a><br />');

document.write('<br /><a href="cohorts.aspx" class="sidelink-left" target="_top">Cohorts</a><br />');

document.write('<br /><a href="mentoring.aspx" class="sidelink-left" target="_top">Mentoring</a><br />');

document.write('<br /><a href="speakers.aspx" class="sidelink-left" target="_top">Guest Speakers</a><br />');

document.write('</td></tr></table><br />');



document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br />');

document.write('<table cellpadding="0" cellspacing="0" border="0" class="notewidth"><td align="center">');

   if (showRimage == "yes") {

var twox = "<img src=\"picts/";
var thrx = " border=\"1\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*randomPics);
	img = forx;
	if (img == "0") {
	document.write(twox+ 'random-1.jpg"' +thrx);
	}
	if (img == "1") {
	document.write(twox+ 'random-2.jpg"' +thrx);
	}
	if (img == "2") {
	document.write(twox+ 'random-3.jpg"' +thrx);
	}
	if (img == "3") {
	document.write(twox+ 'random-4.jpg"' +thrx);
	}
	if (img == "4") {
	document.write(twox+ 'random-5.jpg"' +thrx);
	}
	if (img == "5") {
	document.write(twox+ 'random-6.jpg"' +thrx);
	}
	if (img == "6") {
	document.write(twox+ 'random-7.jpg"' +thrx);
	}
	if (img == "7") {
	document.write(twox+ 'random-8.jpg"' +thrx);
	}
	document.write('</a>');
	}

document.write('</td></tr></table><br />');


// -- END -->
