pressthumbs = new Array;
pressthumbs=['01wku_graduation.jpg','02merrow.jpg','03az_large_lecture.jpg',
'04az_andre_on_court.jpg','05az_robin_and_ezra.jpg','06ac_student2.jpg',
'07ccd_teaching.jpg','08az_student_teacher_sciencelab.jpg','09wku_ceylon_working.jpg',
'10debra_stake_home.jpg'];

presspiccaps = new Array;
presspiccaps[0]=['Students who graduate from college defy the odds.  Here at Western Kentucky University, in Bowling Green, KY, the graduation rate is 44%.'];
presspiccaps[1]=['Executive Producer and Correspondent John Merrow'];
presspiccaps[2]=['Large lectures, like this one at the University of Arizona in Tucson, are a familiar experience for students in general education classes at most universities.'];
presspiccaps[3]=['Andre Iguodala wowed Wildcat fans for two seasons, then left the University of Arizona to sign a $9 million contract with the Philadelphia 76ers of the NBA.'];
presspiccaps[4]=['Robin Bhalla says he and his buddies often drank four nights a week at Arizona. Still, he made the dean\'s list during his senior year.'];
presspiccaps[5]=['Amherst College in Amherst, MA is among the most selective colleges in the country.  It rejects four out of five applicants.'];
presspiccaps[6]=['Philosophy professor and &#147;freeway flyer&#147; Bob Gibson teaches 280 students in nine courses at three colleges in the Denver metropolitan area.  Part-time, non-tenured faculty like Gibson are increasingly common on American college campuses.'];
presspiccaps[7]=['English major Britney Schmidt was ready to leave the University of Arizona after a disappointing freshman year.  But a general education course in planetary science, taught by renowned scientist Dr. Robert H. Brown, changed the direction of her life. '];
presspiccaps[8]=['To pay for college, 20-year-old Ceylon Hollis works as many as 48 hours a week on the night shift at an automotive parts factory.  By day she takes classes, studies, and grabs sleep whenever she can.'];
presspiccaps[9]=['Twenty-nine-year-old Debra Stake has four children, holds down a full-time job, and is the first in her family to go to college. She attends the Community College of Denver.'];

function preloader()
{
     // counter
     var k = 0;

     // create object
     imageObj = new Image();


     // set image list
     images = new Array();
     for(j=0; j<pressthumbs.length; j++)
     {
	 images[j]="photos/"+pressthumbs[j];
 	 }

     // start preloading
     for(k=0; k<pressthumbs.length; k++)
     {
          imageObj.src=images[k];
     }
}

function showPic (whichpic)
{
 if (document.getElementById) {
  document.getElementById('placeholder').src = whichpic.href;
  if (whichpic.title) {
   document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
      } else {
              document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
              }
  return false;

     } else {
  return true;
    }
}

function thumbs()
{
	for(i=0;i<pressthumbs.length;++i)
	{
	document.write('<a onclick="return showPic(this)" href="photos/'+pressthumbs[i]+'" title="'+presspiccaps[i]+'"><img src="photos/thumbnails/'+pressthumbs[i]+'" border="0"></a>&nbsp;');
	if (i==4)document.write('<br>');
	}

}

//document.write('<img src="photos/01wku_graduation.jpg" width="40">');
//document.write('<img src="photos/'+pressthumbs[i]+'" width="40"></a><br>');
//document.write('<a onclick="return showPic(this)" href="photos/'+pressthumbs[6]+'" title="'+presspiccaps[6]+'"><img src="photos/'+pressthumbs[6]+'" width="40"></a>');
