


var theImg = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


theImg[0] = 'imgs/rotating/left1.jpg'
theImg[1] = 'imgs/rotating/left2.jpg'
theImg[2] = 'imgs/rotating/left3.jpg'
theImg[3] = 'imgs/rotating/left4.jpg'
theImg[4] = 'imgs/rotating/left5.jpg'
theImg[5] = 'imgs/rotating/left6.jpg'
theImg[6] = 'imgs/rotating/left7.jpg'
theImg[7] = 'imgs/rotating/left8.jpg'
theImg[8] = 'imgs/rotating/left9.jpg'
theImg[9] = 'imgs/rotating/left10.jpg'
theImg[10] = 'imgs/rotating/left11.jpg'
theImg[11] = 'imgs/rotating/left12.jpg'
theImg[12] = 'imgs/rotating/left13.jpg'
theImg[13] = 'imgs/rotating/left14.jpg'
theImg[14] = 'imgs/rotating/left15.jpg'
theImg[15] = 'imgs/rotating/left16.jpg'


// do not edit anything below this line

var j = 0
var p = theImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImg[i]
}
var whichImg2 = Math.round(Math.random()*(p-1));
function showLeftImage(){
document.write('<img src="'+theImg[whichImg2]+'">');
}

//  End -->

var theTestimonial = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.


theTestimonial[0] = '"The workshops extend my learning beyond ordinary classes."<br/>-CED student'
theTestimonial[1] = '"I have gleaned many new ideas for creative teaching in the classroom!"<br/>-CED student'
theTestimonial[2] = '"The Showcase gave me the ability to build my confidence and speak in  front of my peers.  Many of the comments and criticisms on the forms I received were similar to ideas I already had about improving my public speaking skills and about the content of my workshop."<br/>-CED student'
theTestimonial[3] = '"I realize preparation is a key component to an effective presentation. Because I was confident in my information, the audience was the winner."<br/>-Showcase presenter'
theTestimonial[4] = '"Educators should always be willing to learn in and outside of the classroom. This Showcase provided the opportunity to learn more outside of the classroom and work with peers."<br/>-Student presenter'
theTestimonial[5] = '"I was very proud of myself for having the courage to stand in front of a very distinguished group of professionals and share one of my favorite reading strategies."<br/>-Student presenter'



// do not edit anything below this line

var j = 0
var p = theTestimonial.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theTestimonial[i]
}
var whichTest = Math.round(Math.random()*(p-1));
function showTestimonial(){
document.write(theTestimonial[whichTest]);
}
//  End -->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0 - open popup window
  window.open(theURL,winName,features);
}
//-->
<!--Popup Video Window

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=530,height=437');");
}
// End -->


