


	homeon = new Image;
	homeoff = new Image;
	bioon = new Image;
	biooff = new Image;
	bookson = new Image;
	booksoff = new Image;
	articleson = new Image;
	articlesoff = new Image;
	interviewson = new Image;
	interviewsoff = new Image;
	contacton = new Image;
	contactoff = new Image;
	printon = new Image;
	printoff = new Image;
	totopon = new Image;
	totopoff = new Image;

	homeon.src = "../images/nav_home_on.gif";
	homeoff.src = "../images/nav_home.gif";
	bioon.src = "../images/nav_bio_on.gif";
	biooff.src = "../images/nav_bio.gif";
	bookson.src = "../images/nav_books_on.gif";
	booksoff.src = "../images/nav_books.gif";
	articleson.src = "../images/nav_articles_on.gif";
	articlesoff.src = "../images/nav_articles.gif";
	interviewson.src = "../images/nav_reviews_on.gif";
	interviewsoff.src = "../images/nav_reviews.gif";
	contacton.src = "../images/nav_contact_on.gif";
	contactoff.src = "../images/nav_contact.gif";
	printon.src = "../images/printerfriendly_on.gif";
	printoff.src = "../images/printerfriendly.gif";
	totopon.src = "../images/totop_on.gif";
	totopoff.src = "../images/totop.gif";




function swapem(iname, gname) {
	iname.src = gname.src;
}
   


	
	var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>';
		

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY>\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}



