//alert.js
click_count=0;
function nothing()
{
	click_count++;
	x=Math.floor(Math.random()*4);
	switch(x)
	{
		case 0: alert ("There's nothing there.");break;
		case 1: alert ("That is not the Owl");break;
		case 2: alert ("Nope, the Owl is yellow.");break;
		case 3: alert ("Nothing there.");break;
		default:alert ("Try again, it's not there");break;
	}
}
function insult()
{
	click_count++;
	x=Math.floor(Math.random()*5);
	switch(x)
	{
		case 0: alert ("Are you stupid?");break;
		case 1: alert ("Whats your IQ?");break;
		case 2: alert ("Have you got saw dust for a brain?");break;
		case 3: alert ("Not as wise as an Owl?");break;
		default:alert ("Are you serious!");break;
	}
}
function big_insult()
{
	click_count++;
	x=Math.floor(Math.random()*5);
	switch(x)
	{
		case 0: alert ("I've seen donkeys with more\nbrains than you!");break;
		case 1: alert ("Are you controlling the mouse\nwith your... foot?");break;
		case 2: alert ("Give up now!\nYour're a failure;-)");break;
		case 3: alert ("Are you colour blind? The Owl is YELLOW");break;
		default:alert ("If the Owl was any bigger...");break;
	}
}
