
	var refresh_off_art = new Image
	var refresh_on_art  = new Image
	
	refresh_off_art.src = "../bookworm/refresh-arrow-off-darker.gif"
	refresh_on_art.src  = "../bookworm/refresh-arrow-on.gif"
	
	function arrowon()
	{
		if(document.getElementById("arrow")) document.arrow.src = refresh_on_art.src;
	}
	
	function arrowoff()
	{
		if(document.getElementById("arrow")) document.arrow.src = refresh_off_art.src;
	}
	
	function refresh()
	{
		window.location.href="pause.html"
		window.location.href="http://www.curiousnotions.com/home/bookworm-window0.asp#book-section"
		// window.location.reload(false)
	}


