/*
 * 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/Janine-and-Bernd.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/Nov-11.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holiday_confident.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holiday_fab.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/Monica_Beams.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holiday_pavarotte.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/proteostasis_gang.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holiday_mug.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011_Holiday_nice_list.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holiday_Peter_spy.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/2011Holida_HelloKitty.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/monica_thesis_dec2011.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/bernd_bulls.jpg' width='407' height='292' />") ;
add_random("image", "<img alt='Morimoto Lab Image' src='images/front/bernd_sushi.jpg' width='407' height='292' />") ;




