

var press = {

// opens and closes the h2's in the press room
// the images for this ection must follow a specific 
// naming sequence.
toggleList: function(year)
{
	var theList = document.getElementById("list_pr"+year)
	var listState = theList.style.display;
	var theH2 = document.getElementById("h2_year"+year);
	
	if(listState == "none")
		{
			theList.style.display = "block";
			theH2.style.background = "url(/images/pressRoom/years/h2_year"+year+"_open.gif)";
		}
	else
		{
			theList.style.display = "none";
			theH2.style.background = "url(/images/pressRoom/years/h2_year"+year+".gif)";
		}
},

reloadRpp: function(formId)
{
	document.getElementById(formId).submit();
},

submitSearch: function()
{
	document.getElementById('librarySearch').submit();
}

}


