 // AMOUNT OF PICS: IF YOU WANT TO ADD MORE PIC PLEASE CHANGE THE NUMBER OF POSSIBILITIES ACCORDING TO THE AMOUNT OF PIC
//AND ADD BELOW LINES WITH INSTRUCTIONS

var amtOfPossibilities = 13
		
var rndSet = Math.round(Math.random() * (amtOfPossibilities-1)) + 1
		
if (rndSet == 1)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index1.jpg" 			
var strCaption = "The University of South Carolina Sumter Administration Building facing Miller Road.";
}

//IF YOU WANT TO INSERT MORE PIC. PLEASE COPY FROM THIS LINE TO

else if (rndSet == 2)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index2.jpg"
var strCaption = "Fire Ant Athletics.";
}

//COPY TO HERE AND CHANGE THE NUMBER AND CAPTION ACCORDINGLY

else if (rndSet == 3)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index3.jpg"
var strCaption = "Enjoying food and friends at the Food Court";
}

else if (rndSet == 4)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index4.jpg"
var strCaption = "Pool tables offer some relaxing moments between classes.";
}

else if (rndSet == 5)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index5.jpg"
var strCaption = "Class time.";
}

else if (rndSet == 6)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index6.jpg"
var strCaption = "Walking to class.";
}

else if (rndSet == 7)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index7.jpg"
var strCaption = "J.C.Anderson Library.";
}

else if (rndSet == 8)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index8.jpg"
var strCaption = "Go Gamecocks!";
}

else if (rndSet == 9)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index9.jpg"
var strCaption = "The Big Read";
}
else if (rndSet == 10)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index10.jpg"
var strCaption = "Students using Wi-Fi connection in SUB.";
}
else if (rndSet ==11)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index11.jpg"
var strCaption = "Friends meeting at the Student Union.";
}
else if (rndSet == 12)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index12.jpg"
var strCaption = "Dr. Privett explains a chemical reaction.";
}
else if (rndSet == 13)
{
document.picMain.src = "http://www.uscsumter.edu/images/photo_index13.jpg"
var strCaption = "USC Sumter Peace Garden";
}