function rollverGrid() {
	rolloverGrid();
};

function rolloverGrid(){
	if ( document.getElementById("rolloverGrid") != null ) {
		this.container=document.getElementById("rolloverGrid");
		this.buttons=this.container.getElementsByTagName("a");
		for(var x=0;x<this.buttons.length;x++){
			this.buttons[x].onmouseover=button_select;
			this.buttons[x].onmouseout=button_deselect;
			if ( this.buttons[x].childNodes[0] != null ) {
				this.buttons[x].altText=this.buttons[x].childNodes[0].alt;
				var pinkDiv = document.createElement("div");
				pinkDiv.className = "altText";
				pinkDiv.innerHTML = this.buttons[x].altText+" <img src='http://img2.timeinc.net/people/i/_site/arrowMoreWhite.gif' width='4' height='11' />";
				this.buttons[x].appendChild(pinkDiv);
			}
		}
	}
}
function button_select(){
	var buttons = document.getElementById("rolloverGrid").getElementsByTagName("a")
	for(i=0;i<buttons.length;i++){
		buttons[i].parentNode.className=""
	}
	this.parentNode.className="on";
	return false;
}
function button_deselect(){
	this.parentNode.className="";
	return false;
}


