var home = 0;
var about = 1;
var events = 2;
var join = 3;
var resources = 4;
var contact = 5;
var wiki = 6;
var constitution = 7;
var byoc = 8;

var descriptions = ['Welcome to the PCT ACM website...', 'This is what we do', 'ACM does lots of things... honestly.', 'Want to be a part of the fun?', 'Lots of stuff to download.... or look at.', 'Get ahold of important members... like the officers.', 'The most importart aspects of acm', 'Our rights', 'Our BYOC home page'];

function showDesc(link)
{
	document.getElementById('desc').innerHTML = descriptions[eval(link)];
}

function removeDesc(link)
{
	document.getElementById('desc').innerHTML = "";
}
