<!DOCTYPE html>
<html>
	<head>
		<title>The Credits</title>
		<meta name="viewport" content="width=device-width">
		<link rel="stylesheet" href="style.css" type="text/css">
		<script>
function shuf (ul) {
	var lists = document.getElementsByClassName("shuf");
	for (var l = 0; l < lists.length; l += 1) {
		var ul = lists[l];
		
		for (var i = ul.children.length; i >= 0; i--) {
			ul.appendChild(ul.children[Math.random() * i | 0]);
		}
	}
}

function init() {
	shuf();
	setInterval(shuf, 2000);
}

window.addEventListener("load", init);

		</script>
	</head>
	<body>
		<h1>Credits</h1>
		
		<section>
			<h2>Created By</h2>
	
			<ul class="shuf">
				<!-- Added in order of date -->
				<li>Neale Pickett</li>
				<li>Aaron McPhall</li>
				<li>Ken S</li>
				<li>Russel Nolen</li>
				<li>Patrick Avery</li>
				<li>Kate Vajda</li>
				<li>Alex Brugh</li>
				<li>Paul Ferrell</li>
				<li>Jeremy Scott</li>
				<li>Danny Quist</li>
				<li>Adam Glasgall</li>
				<li>Curtis Hash</li>
				<li>Erin Ochoa</li>
				<li>William Phillips</li>
				<li>Jeremy Hefner</li>
			</ul>
			
			<p>
				Should your name be here? Please remind me!
			</p>
		</section>
		
		<section>
			<h2>Inspiration</h2>
			<ul class="shuf">
				<li>DC949</li>
				<li>Tube Warriors</li>
				<li>Sandia National Laboratories</li>
			</ul>
		</section>
		
		<section>
			<h2>Thanks</h2>
			<p>
				This contest would not exist were it not for hundreds of
				thousands of lines of code from free software authors around the
				world, including:
			</p>
			<ul class="shuf">
				<li>Busybox</li>
				<li>Linux</li>
				<li>dnsmasq</li>
				<li>ngircd</li>
				<li>lua</li>
			</ul>
		</section>
		<nav>
			<ul>
				<li><a href="register.html">Register</a></li>
				<li><a href="puzzles.html">Puzzles</a></li>
				<li><a href="scoreboard.html">Scoreboard</a></li>
			</ul>
		</nav>
		<section id="sponsors">
			<img src="images/lanl.png" alt="Los Alamos National Laboratory">
			<img src="images/doe.png" alt="US Department Of Energy">
			<img src="images/sandia.png" alt="Sandia National Laboratories">
		</section>
	</body>
</html>