function event(title, desc) { this.title = title; this.desc = desc; } var activity = new Array(); for (var i = 0; i < 10; i++) activity[i] = new event(); activity[0].title = "No Meeting"; activity[1].title = "Meeting"; activity[2].title = "Activities Fair"; activity[3].title = "First Meeting"; activity[4].title = "Gaming Day"; activity[5].title = "Cosplay Meeting"; activity[6].title = "Anime Weekend"; activity[7].title = "Anime Social"; activity[8].title = "NonCon"; activity[9].title = "Gaming for Hope"; activity[0].desc = "There will be no meeting held today. Don't be surprised when there's nobody there."; activity[1].desc = "Club members will get together in SC346 around 8:00pm. We will watch anime and eat food. It will be a good time."; activity[2].desc = "MCAS will have a booth at the activities fair next to the rotunda. We will be offering information regarding the club and recruiting new members."; activity[3].desc = "This is the first meeting of the semester. New members can join, officers will be introduced, and the viewing of anime will commence. Also, food. Lots of it."; activity[4].desc = "MCAS and MCCS team up to host Gaming Day. We will have a plethora of video games in the Cabaret from noon until midnight. Come out and play; it'll be fun."; activity[5].desc = "This is our version of a Halloween party. Members are encouraged to come to the meeting in cosplay. There will be competitions and prizes."; activity[6].desc = "This is where we watch all of the anime we didn't get to finish during the semester and then some. It starts at 7:00pm on Friday in SC346 and ends at 12:00pm on Sunday. You made it this far; why stop now? Oh, no meeting Sunday night."; activity[7].desc = "This meeting, we will be meeting in the regular location (SC346 at 8:00pm). What's different is that we will be voting on the new shows for next semester instead of watching Black Cat and Welcome to the NHK. There will be extra food and we would like to take that time to socialize." activity[8].desc = "Vassar is hosting NonCon, a convention involving gaming, sci-fi, anime, and other sorts of the otaku interest. More information can be found here."; activity[9].desc = "MCAS and MCCS team up to host Gaming for Hope. More information can be found here."; function writeDesc(num) { document.getElementById("event").innerHTML = activity[num].title; document.getElementById("desc").innerHTML = activity[num].desc; window.location = "#description"; }