
<!--

var i = 0;
 var banner_text = new Array();
banner_text[0] = '<a href="en/rabbit_boss/rabbit_index.html"><span style="font-size:large;">rabbit boss: "the indian experience of the last </span><span style="font-size: small; font-weight: bold; font-variant: small-caps;"> 120 </span><span style="font-size:large;">years, a size and scope that is awesome. sanchez is a man of tremendous vision."<i>los angeles times</i></a>';
banner_text[1] = '<a href="en/mile_zero/mile_index.html"><span style="font-size:large;">mile zero: "dazzling, masterpiece crackling with backhanded wit, bursting with vital characters, its brilliantly contrived plot uncoils with the suspense of a thriller." <i>the new york times</i></span></a>';
banner_text[2] = '<a href="en/day_of_bees/day_index.html"><span style="font-size:large;">day of the bees: "louise is mythic, earthy and erotic, sensual and female, an embodiment of her native Provence. her letters have the dreamlike quality of an erotic fairy tale." <i>washington post</i></span></a>';
banner_text[3] = '<a href="en/zoot_suit_murders/zoot_index.html"><span style="font-size:large;">zoot-suit murders: "powerful fiction, a vivid tale of political intrigue and romance by a master of pictorial detail." <i>chicago tribune</i></span></a>';
banner_text[4] = '<a href="en/king_bongo/king_index.html"><span style="font-size:large;">king bongo: "big-picture storytelling...full of vivid believable myth.  sanchez has taken the entire historical and cross-cultural immensity of [havana] and telescoped it into an intricately twisted mystery." -<i>san francisco chronicle</i></span></a>';

function change_banner() {
   document.getElementById("page_banner").innerHTML = banner_text[i];
   i = (i + 1) % 5;
   
   onLoad="setInterval('change_banner()', 15000);"
}

// -->

