   
function myFunction(i) {
   
  var question = new Array(34);
  question[0] = "Looking for a syllabus?";
  question[1] = "Trying to decide between classes?";	
  question[2] = "Want to learn about a professor?";	
  question[3] = "Looking for a job?";	
  question[4] = "Want to know how to learn about jobs?";	
  question[5] = "What is the IS Lab?";	
  question[6] = "Want to know where our grads get jobs?";
  question[7] = "Which is right for you -- a degree in IS or in Computer Science?";
  question[8] = "Considering a minor?";
  question[9] = "How do I get access to the Advanced IS Lab?";
  question[10] = "Confused about your username and password for the Advanced IS lab?";
  question[11] = "How do I check for grades or register for classes on-line?";
  question[12] = "What is the Mentoring Program?";
  question[13] = "What is the ISPC?";
  question[14] = "What is the ListServ?";
  question[15] = "How do I learn about job opportunities or scholarships?";
  question[16] = "How can I learn about new technologies?";
  question[17] = "Why should I consider IS for my major?";
  question[18] = "What does a systems analyst really do?";
  question[19] = "What kinds of resources are available for MIS students?";
  question[20] = "What are scholarships for IS students?";
  question[21] = "What activities are available for IS students?";
  question[22] = "Does the IS Area have an external advisory board?";
  question[23] = "How do I make a suggestion for the IS Program?";
  question[24] = "How do I make suggestions for the IS Page?";
  question[25] = "Can I search the IS Website?";
  question[26] = "Where can I get career advice?";
  question[27] = "Do you want to get experience in web development for your resume ?";
  question[28] = "Looking for a syllabus?";
  question[29] = "When do we expect courses to be offered?";
  question[30] = "Where can I find some programming help online?";
  question[31] = "Where can I find news about IS/IT?";
  question[32] = "Who is in the MIS Program?";
  question[33] = "How do I get my web page listed among the MIS Students?";
  











 var x = question[i];
     return x;
     
}
