function ShowBlurb(val) {
var Blurb;
Blurb = "";
switch(val) {
	case 1:
	    Blurb="Caleb Temple, played by Lucas Black, is the young orphan hero.";
	    break;
	case 2:
	    Blurb="Loris Holt, played by Tina Lifford, is Caleb's foster parent and owner of the boarding house.";
	    break;
	case 3:
	    Blurb="Gail Emory, played by Paige Turco, is Caleb's cousin and becomes involved with Lucas Buck.";
	    break;
	case 6:
	    Blurb="Merlyn Temple, played by Sarah Paulsen, is Caleb's dead sister who returns to guide and protect him.";
	    break;
	case 4:
  	    Blurb="Ben Healy, played by Nick Searcy, is the Fulton County deputy sheriff.";
  	    break;
  	case 5:
  	    Blurb="Dr. Matt Crower, played by Jake Weber, is a physician at the Fulton County Hospital.";
  	    break;
  	case 7:
  	    Blurb="Dr. Billy Peale, played by John Mese, comes to Trinity to solve the mystery behind a plague.";
  	    break;
  	case 8:
  	    Blurb="Selena Coombs, played by Brenda Bakke, is the school mistress and lover to Lucas Buck.";
  	    break;
  	case 9:
  	    Blurb="Lucas Buck, played by Gary Cole, is the Fulton County sheriff and very interested in Caleb.";
  	    break;
  	case 10:
  	    Blurb="Enter the American Gothic Web Site!";
  	    break;
 }
idPara.innerHTML = Blurb;
}

function Default() {
	Blurb="Welcome to an American Gothic Web Site."
	idPara.innerHTML = Blurb;
}

