/*
 * random.js :: amf*northwestern-edu
 * Web Communications :: Northwestern University
 */


// global vars

var values = new Array() ;


// functions

function add_random(key, value) {
	if(values[key] == null) {
		var newArray = new Array() ;
		values[key] = newArray ;
	}
	
	values[key][values[key].length] = value ;
}

function write_random(key) {
	var random = Math.floor(Math.random()*values[key].length) ;
	document.write(values[key][random]) ;
}

// Image List




add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_janine.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/international.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/jj_barbara.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/jj_offerings.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/solveig.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/jj_ceremony.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_anat.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_rick.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_daniel.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_group.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_patrick.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_dinner.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat_dinner1.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_hsp90.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_peter.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/labretreat09_dinner2.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/halloween09_alice.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/halloween09_elvis.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/halloween09_ancient.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/halloween09_flapper.jpg' width='407' height='292' />") ;
