//If an apostrophe or single quote ' character appears anywhere within the code
//then be sure to precede it with a backslash \
//e.g. You\'re welcome.

//Regular double quotes " are OK
//To add additional entries, just follow the pattern below, making sure to
//increment to number between the [] and starting the entry with single quotes
//e.g. di[1]='...'  
//Make sure that the first entry is index [0]

var di=new Array() //Do not change this line

//User modifiable data below:


di[0]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/seattle2.jpg" width="127" height="125" align="right">The Seattle Digital Photograph Collection shows the neighborhoods of Seattle, including downtown, Fremont, Ballard, West Seattle, and the Capitol Hill District. <a href="http://content.lib.washington.edu/seattleweb/">More....</a></td></tr></table>'

di[1]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/koike_tree.jpg" align="right">The Modern Photographers Collection includes works from Art Hupy, Ernest Kassowitz, Kyo Koike, Frank Kunishige, Mary Randlett, and others. <a href="http://content.lib.washington.edu/hupyweb/">More....</a></td></tr></table>'

di[2]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/indians.jpg" align="right">The Frank La Roche Photograph Collection contains scenes of Seattle, Washington state, Alaska, and the western United States and Canada. <a href="http://content.lib.washington.edu/larocheweb/">More....</a></td></tr></table>'

di[3]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/tlingits.jpg" align="right">The American Indians of the Pacific Northwest Collection contains photographs, documents, and essays about the Northwest Coast and Plateau Indian cultures. <a href="http://content.lib.washington.edu/aipnw/index.html">More....</a></td></tr></table>'

di[4]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/exposition.jpg" align="right">The Alaska-Yukon-Pacific Exposition Collection contains photographs of the fair held on the campus of the University of Washington during the summer of 1909. <a href="http://content.lib.washington.edu/aypweb/index.html">More....</a></td></tr></table>'

di[5]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/codfish.jpg" align="right">The John N. Cobb Collection contains images of fisheries, whaling activities, clamming and oystering industries along the Pacific Coast and Alaska in ca. 1897-1917. <a href="http://content.lib.washington.edu/cobbweb/index.html">More....</a></td></tr></table>'

di[6]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/goldrush.jpg" align="right">The Asahel Curtis Photo Company Collection contains many scenes of Washington State, the Pacific Northwest, and Alaska and the Klondike, ca. 1850s-1940. <a href="http://content.lib.washington.edu/curtisweb/index.html">More....</a></td></tr></table>'

di[7]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/fashion.jpg" align="right">The Fashion Plate Collection includes hand-colored, illustrated plates from leading French and English fashion journals between 1806 and 1914. <a href="http://content.lib.washington.edu/costumehistweb/index.html">More....</a></td></tr></table>'

di[8]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/women_dogs.jpg" align="right">The Eric A. Hegg Photograph Collection contains images of frontier life in Alaska and the Yukon during the Klondike and Alaska gold rushes in 1897-1901. <a href="http://content.lib.washington.edu/heggweb/index.html">More....</a></td></tr></table>'

di[9]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/snake.jpg" align="right">The International Collection showcases selected photographs and postcards from Asia and South America during the 1870s-1930s.  <a href="http://content.lib.washington.edu/icweb/index.html">More....</a></td></tr></table>'

di[10]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/asiancrew.jpg" align="right">The Clark Kinsey Photograph Collection includes images documenting logging and milling camps and other forest related activities in Washington State, ca. 1910-1945. <a href="http://content.lib.washington.edu/clarkkinseyweb/index.html">More....</a></td></tr></table>'

di[11]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/harmony.jpg" align="right">The Social Issues Collection covers a variety of topics, including women\'s issues, labor organizations, utopian colonies, ethnic groups, and leisure activities. <a href="http://content.lib.washington.edu/socialweb/index.html">More....</a></td></tr></table>'

di[12]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/football.jpg" align="right">The University of Washington Campus Photographs includes images of student activities, buildings, departments, and athletics from 1861 to the present. <a href="http://content.lib.washington.edu/uwcampusweb/index.html">More....</a></td></tr></table>'

di[13]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/manandlog.jpg" align="right">The Washington Localities Collection contains historical images of cities and towns, fortifications, public works, and national parks in Washington state. <a href="http://content.lib.washington.edu/wastateweb/index.html">More....</a></td></tr></table>'

di[14]='<table class="whatsnewtext" border="0" cellpadding="2"><tr><td valign="top"><img src="images/narrows.jpg" align="right">The Tacoma Narrows Bridge Collection documents the creation of the bridge, its collapse in 1940, studies of its aerodynamics, and the construction of its replacement. <a href="http://content.lib.washington.edu/farquharsonweb/index.html">More....</a></td></tr></table>'

//Do not change anything below this line
var n = di.length;
var r=Math.round(Math.random()*(n-1));
function doRandom() {
document.write(di[r]);
}