var text_st = new Array(
"&nbsp;American National Portrait Gallery",
"&nbsp;Art Gallery of Ontario, Toronto, Ontario",
"&nbsp;Brooklyn Museum",
"&nbsp;Guggenheim Museum",
"&nbsp;Fine Arts Museums of San Francisco",
"&nbsp;Finnish National Gallery",
"&nbsp;Kimbell Art Museum",
"&nbsp;Le Louvre",
"&nbsp;Minneapolis Museum of Art",
"&nbsp;Museo del Prado, Madrid",
"&nbsp;National Museum of American Art",
"&nbsp;National Gallery of Canada",
"&nbsp;National Museum of Sweden",
"&nbsp;National Galleries of Scotland",
"&nbsp;National Gallery of Art",
"&nbsp;National Gallery in Prague",
"&nbsp;National Gallery of Australia",
"&nbsp;National Gallery of Iceland",
"&nbsp;National Gallery of Victoria",
"&nbsp;National Museum of Modern Art, Tokyo",
"&nbsp;National Museum of Western Art, Tokyo",
"&nbsp;National Gallery, London",
"&nbsp;National Gallery of Ireland",
"&nbsp;National Museum of Contemporary Art, Korea",
"&nbsp;New Arts Gallery",
"&nbsp;San Diego Museum of Art",
"&nbsp;Tel Aviv Museum of Art",
"&nbsp;Vincent Art Gallery",
"&nbsp;Whitney Museum of American Art, New York",
"&nbsp;The State Hermitage Museum",
"&nbsp;Museums of Russia"
);


var l = text_st.length;
var dt = new Date;
var k = dt.getYear ( ) * 10000 + dt.getMonth ( ) * 1000 + dt.getDate ( );
//alert ( l );
//alert ( k % l );
var rnd_no = k % l;//Math.round((l-1)*Math.random());
//var rnd_no = Math.round((l-1)*Math.random());
document.write(text_st[rnd_no]);



