// JavaScript Document		//Help by JavaScript Kit(http://www.javascriptkit.com)		function random_img(){		var myimages=new Array()		//specify random images below. Put as many as you'd like		myimages[1]="http://www.underconsideration.com/speakup/archives/book_univ_princ_design.jpg"		myimages[2]="http://www.underconsideration.com/speakup/archives/book_colossal_design.jpg"		myimages[3]="http://www.underconsideration.com/speakup/archives/book_smile_mind.jpg"		myimages[4]="http://www.underconsideration.com/speakup/archives/book_inspirability.jpg"		myimages[5]="http://www.underconsideration.com/speakup/archives/book_design_numbers.jpg"		var imagetext=new Array()		//specify random text below. Put as many as you'd like		imagetext[1]="Universal Principles of Design"		imagetext[2]="Colossal Design"		imagetext[3]="A Smile in the Mind"		imagetext[4]="Inspirability"		imagetext[5]="Design By Numbers"		//specify corresponding links below		var imagelinks=new Array()		imagelinks[1]="http://www.amazon.com/exec/obidos/ASIN/1592530079/uc-20"		imagelinks[2]="http://www.amazon.com/exec/obidos/ASIN/158180444X/uc-20"		imagelinks[3]="http://www.amazon.com/exec/obidos/ASIN/0714838128/uc-20"		imagelinks[4]="http://www.amazon.com/exec/obidos/ASIN/1581805551/uc-20"		imagelinks[5]="http://www.amazon.com/exec/obidos/ASIN/0262632446/uc-20"		var ry=Math.floor(Math.random()*myimages.length)		if (ry==0)		ry=1		document.write('<img src="'+myimages[ry]+'" alt="Word It" border="0" /><br><a href='+'"'+imagelinks[ry]+'"'+' target="_blank" title="Word It Author Link">'+imagetext[ry]+'</a>')		}		random_img()		//-->		
