I have an image and a few DIVs When the page loads, it absolutely places the DIVs over the image. When I mouseover the image, the DIV becomes visible. Whenever this happens in Firefox on a Mac it blurs/unblurs text as I move back and forth.

//_Back is a layer with transparent background color over image
//_Tools is a layer containing onclick buttons to change the text inside
function selectPerson (thisPerson) {
	if (loadedInline == 1) { //is globally set already
		document.getElementById(thisPerson+'_Tools').style.display='block';
		document.getElementById(thisPerson+'_Back').style.display='block';
	}
}

function deselectPerson(thisPerson) {
		document.getElementById(thisPerson+'_Back').style.display = 'none';
		document.getElementById(thisPerson+'_Tools').style.display = 'none';
}

This is all that's going on. Any ideas?

    Write a Reply...