function fixbugs() {
	// get the designated hyperlink focus it then blur it to fix a bug
	// in IE whereby 'display: block' elements won't change background
	// colour unless you move the mouse over the link itself
	var obj = document.getElementById('FocusMeForBugFix');
	obj.focus();
	obj.blur();
}

window.onload = fixbugs;