﻿// JavaScript Document to post random spotlight images


//store the quotations in arrays

images2 = new Array(8);

images2[0] = "<a href = 'http://www.warriorathletics.com/'><img src='images/reasons2/82.png' alt='Reason No. 82: All-Around Champions' border='0'></a>";

images2[1] = "<a href = 'http://www.csustan.edu/FMP/Pages/history.html'><img src='images/reasons2/133.png' alt='Reason No. 133: Faculty Who Care' border='0'></a>";

images2[2] = "<a href = 'http://www.csustan.edu/aboutus/visionmission.html'><img src='images/reasons2/164.png' alt='Reason No. 164: Learning is Paramount' border='0'></a>";

images2[3] = "<a href = 'http://www.dineoncampus.com/csustan/'><img src='images/reasons2/209.png' alt='Reason No. 209: We love Caffeine' border='0'></a>";

images2[4] = "<a href = 'http://www.csustan.edu/src/'><img src='images/reasons2/257.png' alt='Reason No. 257: Way of the Warriors' border='0'></a>";

images2[5] = "<a href = 'http://www.csustan.edu/Catalog/Colleges/DepartmentsPrograms.html'><img src='images/reasons2/285.png' alt='Reason No. 285: We have the Programs' border='0'></a>";

images2[6] = "<a href = 'http://www.csustan.edu/StudentLife/'><img src='images/reasons2/303.png' alt='Reason No. 303: Living It Up' border='0'></a>";

images2[7] = "<a href = 'http://www.csustan.edu/aboutus/achievements.html'><img src='images/reasons2/374.png' alt='Reason No. 374: March of Honor' border='0'></a>";

index1 = Math.floor(Math.random() * images2.length);

function showImage2(){
document.write(images2[index1]);
}

//done

// -->