function load() {
	frame();
	webSays();
	aComics();
}

function webSays() {
	var w_says = [];
	var i = rand(6);
	
	w_says[0] = "Website says: Website tummy not feel good. Website eat too much spams.";
	w_says[1] = "Website says: Website want your baby!";
	w_says[2] = "Website says: Would you like to feed on my RSS?";
	w_says[3] = "Website says: Website is MSG free!";
	w_says[4] = "Website says: Genghis Khan always wins...";
	w_says[5] = "Website says: Is chicken tuna of the land?";
	document.getElementById("ws").innerHTML = w_says[i];
}

function frame() {
	if(top.location != self.location) {
		top.location = self.location;
	}
}

function aComics() {
	var c_list = [];
	var c_num = [];
	var temp;
	var i;
	var check = false;
	var fin;
	
	c_list[0] = '<li><a href="http://www.xkcd.com">XKCD</a></li>';
	c_list[1] = '<li><a href="http://www.vgcats.com">VG Cats</a></li>';
	c_list[2] = '<li><a href="http://www.dresdencodak.com/index.html">Dresden Codak</a></li>';
	c_list[3] = '<li><a href="http://www.robandelliot.cycomics.com/index.php">Rob and Elliot</a></li>';
	c_list[4] = '<li><a href="http://www.drunkduck.com/Charby_the_Vampirate/">Charby the Vampirate</a></li>';
	c_list[5] = '<li><a href="http://crazyguyjody.com/">Crazy Guy Jody</a></li>';
	c_list[6] = '<li><a href="http://www.wetherobots.com">We the Robots</a></li>';
	c_list[7] = '<li><a href="http://www.theflowfieldunity.com">The Flowfield Unity</a></li>';
	c_list[8] = '<li><a href="http://www.questionablecontent.net">Questionable Content</a></li>';
	c_list[9] = '<li><a href="http://noreasoncomics.com/">No Reason</a></li>';
	c_list[10] = '<li><a href="http://www.ctrlaltdel-online.com/">Ctrl+Alt+Del</a></li>';
	c_list[11] = '<li><a href="http://changi.kittyscomics.com/">Changi</a></li>';
	c_list[12] = '<li><a href="http://mycardboardlife.com/">My Cardboard Life</a></li>';
	c_list[13] = '<li><a href="http://www.duelinganalogs.com/">Dueling Analogs</a></li>';
	c_list[14] = '<li><a href="http://www.qwantz.com">Dinosaur Comics</a></li>';
	c_list[15] = '<li><a href="http://gomanga.com/webmanga/index.php?series=aoi">Aoi House</a></li>';
	c_list[16] = '<li><a href="http://circleversussquare.com/">Circle Versus Square</a></li>';
	c_list[17] = '<li><a href="http://www.frozenreality.co.uk/comic/bunny/">Bunny</a></li>';
	c_list[18] = '<li><a href="http://www.mofcomic.com/">Matter of Fact</a></li>';
	c_num[0] = rand(19);
	
	while(c_num.length < 6) {
		temp = rand(19);
		for(i = 0; i < c_num.length; i++) {
			if(temp == c_num[i]) {
				check = true;
			}
		}
		if(!check) {
			c_num[c_num.length] = temp;
		}
		check = false;
	}
	document.getElementById("refr").style.visibility = "visible";
	document.getElementById("aw").innerHTML = "<ul>" + c_list[c_num[0]] + c_list[c_num[1]] + c_list[c_num[2]] + c_list[c_num[3]] + c_list[c_num[4]] + c_list[c_num[5]] + '<li><a href="http://www.halanddave.com/links">...More...</a></li>' +"</ul>";
}

function rand(max) {
	return Math.floor(Math.random() * max)
}