// JavaScript Document

function banner() {
};
 
  banner = new banner();
number = 0;

// bannerArray

banner[number++] = "<h4 class='publications'>Publications</h4> <img class='img_right' src='images/book_covers/seeds_of_morality_cover.jpg' /><h3><emphasis>Seeds of Mortality</emphasis></h3><p><strong>Stewart Justman</strong><br /><br /><em>2004 PEN Award for the Art of the Essay</em><br /><br />This book is an unusual meditation on illness, on relations between patients and doctors, on difficult and eternal choices.<br /> <a href='publications.html#justman'>Read more</a> . . .</p> "

banner[number++] = "<h4 class='publications'>Publications</h4> <img class='img_right' src='images/book_covers/Levtow_book_cover.jpg' /><h3><emphasis>Images of Others</emphasis></h3><p><strong>Nathaniel Levtow</strong><br /><br />In this volume, Nathaniel Levtow articulately interacts with Mesopotamian and Israelite iconoclastic traditions, locating Israelite polemics against cult images among a spectrum of ancient West Asian literary genres anritual practices that target the embodied deities of political opponents. <br /> <a href='publications.html#levtow'>Read more</a> . . .</p> "

// add more photos here

increment = Math.floor(Math.random() * number);

document.write(banner[increment]);

//-->
