// JavaScript Document
function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

// Store some random quotations

var random_info = new Array ( );
random_info[0] = "Inspiring and inciting awareness of social and environmental issues globally through the transformative power of art.";
random_info[1] = "Curating and producing traveling exhibitions that engage talented artists from around the world, working in a variety of media and styles, to address critical issues of our time.";
random_info[2] = "Partnering with leading educational and activist organizations to produce art exhibitions on such topics as social justice, human rights, gender equity, war and peace, and the environment.";

// Pick a random quote from the list,
// and set the 'random-quote' paragraph content to that quote

function pick_info ( )
{
  document.getElementById("random-info").innerHTML = random_info[rand(3)-1];
} 
function showSub() {
	document.getElementById('submenu').style.visibility = 'visible';
}
function unShow() {
	//document.getElementById('submenu').style.display = 'none';
}