function openAllLinks() 
{
	var links = new Array(
		new Array('http://thedailywtf.com/default.aspx', 'The Daily WTF'),
		new Array('http://www.bash.org/?latest', 'Bash\'s Latest'),
		new Array('http://www.qdb.us/latest', 'QDB\'s Latest'),
		new Array('http://www.violentacres.com/', 'Violent Acres'),
		new Array('http://www.ctrlaltdel-online.com/comic.php', 'CAD'),
		new Array('http://www.xkcd.com/', 'XKCD'),
		new Array('http://sunday.shadowsofadream.com/', 'Sunday'),
		new Array('http://www.rose-hulman.edu/%7Eshieldga/', 'Gareth\'s Webspace'),
		new Array('http://last-night.shadowsofadream.com/', 'Last Night')
	);

	for(i = 0; i < links.length; i++)
	{
		var link = links[i];
		window.open(link[0], link[1]);
	}
}
