h1t = "Bite Me";
h1a = "Christopher Moore";
h1i = "1.gif";

h2t = "The Godfather of Kathmandu";
h2a = "John Burdett";
h2i = "2.gif";

h3t = "The Secret Lives of Emily Dickinson";
h3a = "Jerome Charyn";
h3i = "3.gif";

h4t = "Point Omega";
h4a = "Don De Lillio";
h4i = "4.gif";

h5t = "Shadow Tag";
h5a = "Louise Erdritch";
h5i = "5.gif";

h6t = "The Sea Captain's Wife";
h6a = "Beth Powning";
h6i = "6.gif";

h7t = "The Girl with the Glass Feet"
h7a = "Ali Shaw";
h7i = "7.gif";

h8t = "The Whale";
h8a = "Philip Hoare";
h8i = "8.gif";

h9t = "Paris Under Water";
h9a = "Jefferey H. Jackson";
h9i = "9.gif";

h10t = "This Book is Overdue";
h10a = "Marilyn Johnson";
h10i = "10.gif";

h11t = "I.O.U.";
h11a = "John Lancaster";
h11i = "11.gif";

h12t = "Our Man in Tehran";
h12a = "Robert Wright";
h12i = "12.gif";

h13t = "Bible Babel";
h13a = "Kristen Svenson";
h13i = "13.gif";

h14t = "";
h14a = "";
h14i = "14.gif";

h15t = "";
h15a = "";
h15i = "15.gif";

h16t = "";
h16a = "";
h16i = "16.gif";








function _copyright()
{
	//document.write("Sleep, until the sunlight burns a happy hole in your heart.");
	//document.write("Mia Farrow, the night she beat up Frank Sinatra.");
	//document.write("Shantih shantih shantih");
	//document.write("Sedan delivery is a job I know I'll keep; it sure was hard to find.");
	//document.write("just Louise, and her lover, so entwined");
	//document.write("&quot;When?&quot;, said the moon to the stars in the sky.  &quot;Soon&quot;, said the wind that followed him home.");
	//document.write("The old ram stands looking down over rockslides, stupidly triumphant.");
	//document.write("BWAAAAAAAAAHHHHHHHHHHHHH-HA-HA-HA-HAAAAAAAAAA!!!!!!!!!!!!!!!");	
	//document.write("Silent warriors of the deep, drifting by with the grace that comes from bonelessness.");	
//	document.write("I see the shapes I remember from maps.");	
	//document.write("This is my claim, he said. And yet everywhere upon it are pockets of autonomous life. Autonomous.  In order for it to be mine nothing must be permitted to occur upon it save by my dispensation.");	
//	document.write("Worlds without end.");
	//document.write("The words he is in possession of he cannot be deprived of. Their authority transcends his ignorance of their meaning.");
//	document.write("The judge tilted his great head. The man who believes that the secrets of this world are forever hidden lives in mystery and fear. Superstition will drag him down. The rain will erode the deeds of his life. But that man who sets himself the task of singling out the thread of order from the tapestry will by the decision alone have taken charge of the world and it is only by such taking charge that he will effect a way to dictate the terms of his own fate.");	
	//document.write("The force that through the green fuse drives the flower drives my green age; that blasts the roots of trees is my destroyer.  And I am dumb to tell the crooked rose my youth is bent by the same wintry fever.");
	//document.write("O'er seas that have no beaches to end their waves upon, I floated with ten peaches, a sofa and a swan.");
	document.write("The worst realities of our age are manufactured realities. It is therefore our task, as creative participants in the universe, to re-dream our world.");
 

}

function openHopWindow(fname){
	var bob = window.open(fname,
						'_blank',
						'height=500,width=450,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
	//bob.focus();
}

function navOver(obj)
{

	var sColor = "#cc3300";

	switch(obj.id.toString())
	{
		case "navBar11":
			document.getElementById("navBar21").style.backgroundColor = sColor;
			break;
		case "navBar12":
			document.getElementById("navBar22").style.backgroundColor = sColor;
			break;
		case "navBar13":
			document.getElementById("navBar23").style.backgroundColor = sColor;
			break;
		case "navBar14":
			document.getElementById("navBar24").style.backgroundColor = sColor;
			break;
		case "navBar15":
			document.getElementById("navBar25").style.backgroundColor = sColor;
			break;
		case "navBar16":
			document.getElementById("navBar26").style.backgroundColor = sColor;
			break;
	}
}

function navOut(obj)
{

	switch(obj.id.toString())
	{
		case "navBar11":
			document.getElementById("navBar21").style.backgroundColor = "#dddddd";
			break;
		case "navBar12":
			document.getElementById("navBar22").style.backgroundColor = "#cccccc";
			break;
		case "navBar13":
			document.getElementById("navBar23").style.backgroundColor = "#bbbbbb";
			break;
		case "navBar14":
			document.getElementById("navBar24").style.backgroundColor = "#aaaaaa";
			break;
		case "navBar15":
			document.getElementById("navBar25").style.backgroundColor = "#999999";
			break;
		case "navBar16":
			document.getElementById("navBar26").style.backgroundColor = "#888888";
			break;
	}
}

function listNavOut(obj)
{
	if(obj.className!="listButtonActive")
	{
//		obj.style.color='darkSlateGray';
		obj.style.fontWeight='normal';
	}
}

function listNavOver(obj)
{
	if(obj.className!="listButtonActive")
	{
//		obj.style.color='green';
		obj.style.fontWeight='bold';
	}
}


function showMe(t)
{
	window.open(t,"showWindow","height=600,width=600,scrollbars=yes");
}


				function refreshdate()
				{
				window.setInterval("putdate()", 1000);
				}
				

				function putdate()
				{
					var now = new Date();
					var then = new Date(2005,6,16,0);
					var secs = eval(then-now)/-1000;
					secs = addCommas(Math.round(secs).toString())
					
					window.document.getElementById("potter1").innerHTML = "Holy jumpin'!<br><br>That was&nbsp;";
					window.document.getElementById("potter2").innerHTML = "&nbsp;seconds ago!  <br><br>";
					
					window.document.getElementById("potter").innerHTML=secs;
				}
				        
				function addCommas(num) {
	                var numWithCommas = ""
	                if(num.length <= 3) {
	                        return num;
	                }
	                for(var i = num.length - 3; i > 0; i -= 3) {
	                        numWithCommas = "," + num.substring(i, i+3) + numWithCommas;
	                }
	                numWithCommas = num.substring(0, Math.abs(3+i)) + numWithCommas;
	                return numWithCommas;
	        	}
				
				
				
