// JavaScript Document
function randomHeader() {
	var headers = new Array("header_G1.jpg","header_TNOTP1.jpg","header_TNOTP2.jpg");
	var headers_desc = new Array("G - XNA Dream Build Play WARMUP 2007 contest winner!","The Night of The Puppets - XNA Game","Icons from The Night of the Puppets - XNA Game");
	var ranNum= Math.floor(Math.random()*headers.length);
    document.getElementById("splashHeader").style.background="url(/img/"+headers[ranNum]+")";
    document.getElementById("splashDescription").innerHTML=headers_desc[ranNum];
	}
	
function mainNavTab(tgt) {
var subname=tgt.getAttribute("id")+"_sub";
tgt.className="mainnav_slot_e_over";
document.getElementById(subname).style.display="block";
	}
	
function closeTab(tgt) {
var subname=tgt.getAttribute("id")+"_sub";
tgt.className="mainnav_slot_e";
document.getElementById(subname).style.display="none";
	}
	
function emailer(name,domain,tgt) {
	var fulladdress="mailto:"+name+"@"+domain;
	document.getElementById(tgt).setAttribute("href",fulladdress);
	}