
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/andrewkang155.jpg",
"/webpage_files/images/menu/Web_ready/stacyfranklin155.jpg",
"/webpage_files/images/menu/Web_ready/aileenharrismenu.jpg",
"/webpage_files/images/menu/Web_ready/robelmenu.jpg",
"/webpage_files/images/menu/Web_ready/brianmenu.jpg",
"/webpage_files/images/menu/Web_ready/arnazmenu.jpg",
"/webpage_files/images/menu/Web_ready/tylermenu.jpg",
"/webpage_files/images/menu/Web_ready/kofimenu.jpg"
);


text = new JAS_initArray(
'\"I will apply the things I’ve learned at GPC throughout the rest of my career.\"',
'\"Georgia Perimeter is close by, and really cheaper than other alternatives.\"',
'\"I liked the small class sizes, and the professors really teach.\"',
'\"The times and location were convenient, and the price was affordable.\"',
'\"Come to the office of Student Life. They can help you get to know the school better.\"',
'\"It gave me a great foundation for what I want to do.\"',
'\"Everyone is so helpful. They make college so much easier.\"',
'\"I\'ll remember the different opportunities and experiences I would not have gotten anywhere else.\"',
'\"It was the best decision I made concerning my education.\"'
);


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

