// Pop Up Find on this page Javascript
// copyright 28th January 2003, by Stephen Chapman, Felgall Pty Ltd

// permission is granted to use this javascript provided that the code
// and comments are not altered
window.onload = initPage;

function locatorWin() {
	var lwin = window.open('locwin.htm','findit','height=100,width=250,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no'); 
	lwin.moveTo(0,0); lwin.focus();
}

function initPage() {
	if(document.getElementById('browsealoud')) {
		document.getElementById('browsealoud').onmouseover = switch_image;
		document.getElementById('browsealoud').onmouseout = reset_image;
	}
}

function switch_image() {
	document.getElementById('browsealoud').src = "gfx/footer/partners/browse-aloud-hover.jpg";
}

function reset_image() {
	document.getElementById('browsealoud').src = "gfx/footer/partners/browse-aloud.jpg";
}