// JavaScript Document
function activeStuff(id){
    	document.getElementById(id).className='active';
    }
    function unactiveStuff(id) {
 		document.getElementById(id).className='unactive';
    }
    function swap(id){
       document.getElementById(id).style.display = 'block';     
    }
    function unSwap(id){
    document.getElementById(id).style.display = 'none';
    }