// JavaScript Document
var homeLink;
window.addEvent('domready', function() {
	
	homeLink = new Element('a', {
		'id':'indexButtonLink',
		'styles':{
			'opacity':0
		},
		'text':'GOOGLE IS NOT THE MAP',
		'href':'http://map.isnotthemap.net',
		'title':'A Map is not the Map - Go to Index/Credits Page',
		'tween':{duration:2000}
	});
	homeLink.inject(document.body).tween.delay(5000,homeLink,['opacity',1]);;
	
	
});