
var locList1 = new Array;
var imageList1 = new Array;
var locList2 = new Array;
var imageList2 = new Array;

imageList1[0] = "mark-burke";
locList1[0] = "cluain-mhuire";
imageList1[1] = "aoife-collins";
locList1[1] = "galway";
imageList1[2] = "maurice-lynch";
locList1[2] = "galway";
imageList1[3] = "dave-moran";
locList1[3] = "cluain-mhuire";
imageList1[4] = "joanne-murphy";
locList1[4] = "galway";
imageList1[5] = "siobhan-mcgibbon";
locList1[5] = "cluain-mhuire";
imageList1[6] = "stephen-mcginley";
locList1[6] = "galway";

imageList2[0] = "huali-zhao";
locList2[0] = "galway";



function showImage1() {
var imageChoice1 = Math.floor(Math.random() * imageList1.length);
document.write('<a href="http://www.gmit.ie/Life-at-GMIT/my-gmit-experience/' + locList1[imageChoice1] + '/' + imageList1[imageChoice1] + '.html"><img src="/Life-at-GMIT/my-gmit-experience/images/' + imageList1[imageChoice1] + '-exp.jpg" border="0"></a>');
}

function showImage2() {
var imageChoice2 = Math.floor(Math.random() * imageList2.length);
document.write('<a href="http://www.gmit.ie/Life-at-GMIT/my-gmit-experience/' + locList2[imageChoice2] + '/' + imageList2[imageChoice2] + '.html"><img src="/Life-at-GMIT/my-gmit-experience/images/' + imageList2[imageChoice2] + '-exp.jpg" border="0"></a>');
}



