$(document).ready(function() {

	$("a").each(function(){
		if ($(this).attr("rel")) {
			$(this).click(function(){
				if (confirm("This is a Very Big Download (~133MB), so it may take a while.  You sure you want to continue?")) {
					return true;
				}
				return false;
			});
		}
	});

	$("a#random").attr("href", "/users/" + userpages[Math.floor(Math.random() * userpages.length - 1)] + ".html");

});

