

function clear() {

	//document.getElementById("showContent").innerHTML = "";
	document.getElementById("contactContent").innerHTML = "";
	document.getElementById("aboutContent").innerHTML = "";
    
}

function showMethod() {

	clear();
	
	var showContent = ""; 
	
	showContent = '<table>';
	showContent += '<tr><td></td><td id="btable" align="center">WHEN</td><td id="btable" align="center">WHERE</td></tr>';
	showContent += '<tr><td>Springternational</td><td id="btable" align="center">Apr 4 - 4:40pm</td><td id="btable" align="center">West Campus</td></tr>';
	showContent += '<tr><td>Duke Talent Show</td><td id="btable" align="center">Apr 17 - 8pm</td><td id="btable" align="center">Reynold\'s Theater</td></tr>';
	showContent += '<tr><td>Speak\'s Spring Show</td><td id="btable" align="center">Apr 20 - 8pm</td><td id="btable" align="center">Page Auditorium</td></tr>';
	showContent += '</table>';
	
	document.getElementById("showContent").innerHTML = showContent;
}

function contactMethod() {

	clear();
	
	var contactContent2 = document.getElementById("contactContent");
	var contactContent = '';
	
	contactContent = '<table>';
	contactContent += '<tr><td>President</td><td id="btable" align="center"><a href="mailto:john.huffsmith@gmail.com">John Huffsmith</a></td></tr>';
	contactContent += '<tr><td>Music Director</td><td id="btable" align="center"><a href="mailto:vivek.upadhyay@duke.edu">Vivek Upadhyay</a></td></tr>';
	contactContent += '<tr><td>On Campus VP</td><td id="btable" align="center"><a href="mailto:csp9@duke.edu">Chris Perry</a></td></tr>';
	contactContent += '<tr><td>Off Campus VP</td><td id="btable" align="center"><a href="mailto:marion.mcmillan@duke.edu">Marion McMillan</a></td></tr>';
	contactContent += '</table>';

	contactContent2.innerHTML = contactContent;
}

function aboutMethod() {
	
	clear();
	
	var aboutContent = '';
	
			aboutContent +=		'<p>';
            aboutContent +=           '"On April 7, 1991, a small group of nervous a cappella amateurs,';
            aboutContent +=           'dressed in their blue blazers, khaki pants, and flower ties, ran ';
            aboutContent +=           'into the cramped commons room of Lancaster Dorm at Duke University,'; 
            aboutContent +=           'to sing their limited repertoire of four-part harmony for the eager crowd. '; 
            aboutContent +=           'It was on this night of nights that Preston Kim and Walter Moore grandfathered '; 
            aboutContent +=           'what would become the most debaucherous, self-defiling, & pretentious group '; 
            aboutContent +=           'of young musicians our great Duke University has ever known.';
            aboutContent +=        '</p>';
            aboutContent +=        '<p>';  
            aboutContent +=           'The original group set the stage for greatness with their renditions of '; 
            aboutContent +=           '"The Lion Sleeps Tonight," "Book of Love," "Run Around Sue," and "Come Go '; 
            aboutContent +=           'With Me." In recent years, the group has become a little more adventurous, '; 
            aboutContent +=           'covering artists such as Outkast, Puddle of Mudd, Mario, Guster, Usher while '; 
            aboutContent +=           'still managing to maintain a softer side with those classic names you love--Peter '; 
            aboutContent +=           'Gabriel, Sting, Vertical Horizon, and Boyz II Men. So if you\'re into getting '; 
            aboutContent +=           'yayed up at a System of a Down concert or just being lulled to sleep by a Red '; 
            aboutContent +=           'Rocks recording of John Tesh, Speak has something for you...or at least something '; 
            aboutContent +=           'close to it.';
            aboutContent +=         '</p>';
            aboutContent +=         '<p>';
            aboutContent +=           'Speak of the Devil has proven that it is here to stay, and has become the most '; 
            aboutContent +=           'exciting and entertaining group on campus. They feed off of their enduring willingness '; 
            aboutContent +=           'to try new things and stay on the leading edge of a cappella innovation, the group\'s '; 
            aboutContent +=           'massive superiority complex, and of course, their destructive addictions to mind-expanding '; 
            aboutContent +=           'drugs (and I mean mind-expanding)."';
            aboutContent +=         '</p>';
            
            document.getElementById("aboutContent").innerHTML = aboutContent;
}

