var changelink = true;

if (document.images) { // Preloaded images
dda1 = new Image();
dda1.src = "http://www.zeroonezero.com/images/pyramid-u.gif";
//dda1.onMouseOver = "this.src = 'http://www.zeroonezero.com/images/pyramid-o.gif'";
//dda1.onMouseOut = "this.src = 'http://www.zeroonezero.com/images/pyramid.gif'";

dda2 = new Image();
dda2.src = "http://www.zeroonezero.com/images/carnival-u.gif";
//dda2.onMouseOver = "this.src = 'http://www.zeroonezero.com/images/carnival-o.gif'";
//dda2.onMouseOut = "this.src = 'http://www.zeroonezero.com/images/carnival.gif'";

dda3 = new Image();
dda3.src = "http://www.zeroonezero.com/images/pyramid-over-u.gif";

dda4 = new Image();
dda4.src = "http://www.zeroonezero.com/images/carnival-over-u.gif";
}

function timeimgs(numb) { // Reusable timer
thetimer = setTimeout("imgturn('" +numb+ "')", 3000);
}

function imgturn(numb) 
{ // Reusable image turner
	if (document.images && changelink) 
	{
		if (numb == "2") 
		{ // This will loop the image
			document["dda"].src = eval("dda2.src");
			document.getElementById('sitelinker').href = "http://www.zeroonezero.com/carnival/";
			document.getElementById('sitelinker').target = "_blank";
			timeimgs('1');
		}
		else 
		{ 
			document["dda"].src = eval("dda" + numb + ".src");
			document.getElementById('sitelinker').href = "http://www.zeroonezero.com/pyramid/";
			document.getElementById('sitelinker').target = "_blank";
			timeimgs(numb = ++numb);
		}
	}
	else
	{
		timeimgs(numb);
	}
}
function mOver()
{
	changelink = false;
	var str = document["dda"].src.toString();
	if (str.search(/carnival/i) > 0)
	{
		document["dda"].src = "http://www.zeroonezero.com/images/carnival-over-u.gif";
	}
	else
	{
		document["dda"].src = "http://www.zeroonezero.com/images/pyramid-over-u.gif";
	}
}
function mOut()
{
	changelink = true;
	var str = document["dda"].src.toString();
	if (str.search(/carnival/i) > 0)
	{
		document["dda"].src = "http://www.zeroonezero.com/images/carnival-u.gif";
	}
	else
	{
		document["dda"].src = "http://www.zeroonezero.com/images/pyramid-u.gif";
	}
}