//writes the info portion of the code

destinations=new Array("index.html","schedule.html","registration.html","scholarships.html","parentinfo.html","testimonials.html",
"mission.html","sponsors.html","directions.html","contact.html","internships.html");

descriptions=new Array(
"Home",
"2009 Schedule",
"Registration",
"Scholarships",
"Parent Info",
"Testimonials",
"About DESIGNCAMP",
"Sponsors",
"Directions",
"Contact Info",
"HS Internships"
);

NumberOfFiles=destinations.length;
function 
ContentsWriter(){
document.write("<p>");
for (var x=0;x<NumberOfFiles;x++)
{

document.write("<B><a href="+destinations[x]+">"+descriptions[x]+"</a><br>");
}
}