// 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_7_essentials.jpg"		myimages[2]="http://www.underconsideration.com/speakup/archives/book_design_cookbook.jpg"		myimages[3]="http://www.underconsideration.com/speakup/archives/book_marks_excellence.jpg"		myimages[4]="http://www.underconsideration.com/speakup/archives/book_think_with_type.jpg"		myimages[5]="http://www.underconsideration.com/speakup/archives/book_emotion_as_promotion.jpg"		var imagetext=new Array()		//specify random text below. Put as many as you'd like		imagetext[1]="The 7 Essentials of Graphic Design"		imagetext[2]="Graphic Design Cookbook: Mix & Match Recipes for Faster, Better Layouts"		imagetext[3]="Marks of Excellence"		imagetext[4]="Thinking With Type: A Critical Guide for Designers, Writers, Editors, & Students"		imagetext[5]="Emotion as Promotion"		//specify corresponding links below		var imagelinks=new Array()		imagelinks[1]="http://www.amazon.com/exec/obidos/ASIN/1581801246/uc-20"		imagelinks[2]="http://www.amazon.com/exec/obidos/ASIN/0877015694/uc-20"		imagelinks[3]="http://www.amazon.com/exec/obidos/ASIN/0714838381/uc-20"		imagelinks[4]="http://www.amazon.com/exec/obidos/ASIN/1568984480/uc-20"		imagelinks[5]="http://www.amazon.com/exec/obidos/ASIN/1580930972/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()		//-->		
