function preload() {
	var img = new Image();
	img.src = 'arrows_on.gif';
	img.src = 'arrows_off.gif';
}

function topnav_on( obj ) {
	if (!obj.contains(event.fromElement)) {
		obj.children.tags('A')[0].children.tags('IMG')[0].src = 'arrows_on.gif';
		obj.style.border = '1px solid #ff4a00';
	}
}

function topnav_off( obj ) {
	if (!obj.contains(event.toElement)) {
		obj.children.tags('A')[0].children.tags('IMG')[0].src = 'arrows_off.gif';
		obj.style.border = '1px solid #000000';
	}
}