
function JAS_get_menu() {

   function JAS_initArray() {
     this.length = JAS_initArray.arguments.length;
     for (var i = 0; i < this.length; i++) { 
          this[i] = JAS_initArray.arguments[i];
     }
   }

image = new JAS_initArray(
"/webpage_files/images/menu/Web_ready/johnnielong.jpg",
"/webpage_files/images/menu/Web_ready/justin155.jpg",
"/webpage_files/images/menu/Web_ready/andrewkang155.jpg",
"/webpage_files/images/menu/Web_ready/kevinngo155.jpg",
"/webpage_files/images/menu/Web_ready/stacyfranklin155.jpg",
"/webpage_files/images/menu/Web_ready/darkrushmenu.jpg",
"/webpage_files/images/menu/Web_ready/aileenharrismenu.jpg"
);


text = new JAS_initArray(
'\"I will apply the things I’ve learned at GPC throughout the rest of my career.\"',
'“You have a wonderful faculty at GPC. I have not had a bad professor.\"',
'\"Georgia Perimeter is close by, and really cheaper than other alternatives.\"',
'\"There’s a commonality—we did at some point take a class or got our associate degree.\"',
'\"I liked the small class sizes, and the professors really teach.\"',
'“I did better in these classes. The classes weren’t just about reading from a book.\"',
'\"The times and location were convenient, and the price was affordable.”'
);


var core=Math.round(Math.random() * (image.length -1))
var ranimage = image[core];
var rantext  = text[core];

stuff = new JAS_initArray(
ranimage,
rantext);

return(stuff);
}//endof

