
var gOps = Array();
var PI = Math.PI;

function glareBox()
{
	for(i = 0; i < 21; i++)
	{
		gOps[i] += 0.005 * i;
		$('b' + i).setOpacity(Math.sin(gOps[i] + 2) / 2 + 0.5);
	}
	window.setTimeout('glareBox()', 200);
}

function gotoBluefishGames(event) {
	location.href = "http://www.bluefishgames.com";
}

function init() {
	for(i = 0; i < 21; i++)
		gOps[i] = 0;
	window.setTimeout('glareBox()', 200);
	$('ltop').observe('click', gotoBluefishGames);
	$('lbottom').observe('click', gotoBluefishGames);
}

document.observe("dom:loaded", init);

