
navOff = new Array();
navOn = new Array();
names = new Array();
names = [null, "credits", "contact", "mailinglist"];

for (var i=1; i<=3; i++) {
	navOff[i] = new Image();
	navOn[i] = new Image();
	navOff[i].src = "http://robotisthefuture.com/images/footer_" + names[i] + "_off.gif";
	navOn[i].src = "http://robotisthefuture.com/images/footer_" + names[i] + "_on.gif";
}

function select(num) {
	document["f" + num].src = navOn[num].src;
}

function deselect(num) {
	document["f" + num].src = navOff[num].src;
}

function credits() {
	creditwindow = window.open("http://robotisthefuture.com/credits.html", "credits", 
'toolbar=no,location=no,directories=no,menubar=no,status=yes,width=350,height=165,resizable=no,scrollbars=no');

	if (window.focus)
		creditwindow.focus();
}


document.write('<table border="0" width="518" cellpadding="0" cellspacing="0"><tr>');
document.write('<td><img src="http://robotisthefuture.com/images/spacer.gif" alt="" width="113" height="22" border="0" /></td>');
document.write('<td><img src="http://robotisthefuture.com/images/footer_copyright.gif" alt="&copy; Robot Is The Future" width="179" height="22" /></td>');
document.write('<td><img src="http://robotisthefuture.com/images/footer_bullet.gif" alt="*" width="12" height="22" /></td>');
document.write('<td><a href="javascript:credits()" title="Site by Fishbucket" onmouseover="select(1)" onmouseout="deselect(1)"><img src="http://robotisthefuture.com/images/footer_credits_off.gif" alt="Site by Fishbucket" name="f1" width="85" height="22" border="0" id="f1" /></a></td>');
document.write('<td><img src="http://robotisthefuture.com/images/footer_bullet.gif" alt="*" width="12" height="22" /></td>');
document.write('<td><a href="mailto:info@robotisthefuture.com" onmouseover="select(2)" onmouseout="deselect(2)"><img src="http://robotisthefuture.com/images/footer_contact_off.gif" alt="Contact Us" name="f2" width="81" height="22" border="0" id="f2" /></a></td>');
document.write('<td><img src="http://robotisthefuture.com/images/footer_bullet.gif" alt="*" width="12" height="22" /></td>');
document.write('<td><a href="mailto:list@robotisthefuture.com?subject=add me" onmouseover="select(3)" onmouseout="deselect(3)"><img src="http://robotisthefuture.com/images/footer_mailinglist_off.gif" alt="Join the Mailing List" name="f3" width="136" height="22" border="0" id="f3" /></a></td></tr></table>');