// 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_design_literacy.jpg"		myimages[2]="http://www.underconsideration.com/speakup/archives/book_100_habits.jpg"		myimages[3]="http://www.underconsideration.com/speakup/archives/book_design_of_dissent.jpg"		myimages[4]="http://www.underconsideration.com/speakup/archives/book_radical_type_design.jpg"		myimages[5]="http://www.underconsideration.com/speakup/archives/book_idea_of_design.jpg"		var imagetext=new Array()		//specify random text below. Put as many as you'd like		imagetext[1]="Design Literacy: Understanding Graphic Design"		imagetext[2]="100 Habits of Successful Graphic Designers"		imagetext[3]="The Design Of Dissent"		imagetext[4]="Radical Type Design"		imagetext[5]="The Idea of Design"		//specify corresponding links below		var imagelinks=new Array()		imagelinks[1]="http://www.amazon.com/exec/obidos/ASIN/1581153562/uc-20"		imagelinks[2]="http://www.amazon.com/exec/obidos/ASIN/1564969770/uc-20"		imagelinks[3]="http://www.amazon.com/exec/obidos/ASIN/1592531172/uc-20"		imagelinks[4]="http://www.amazon.com/exec/obidos/ASIN/0060797274/uc-20"		imagelinks[5]="http://www.amazon.com/exec/obidos/ASIN/0262631660/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()		//-->		
