IE will not do :hover on anything that isn't a link. Because of this, to get the hover effect in IE, you will need to rewrite this and similar:
Code:
menu1[0]='<a onClick=document.getElementById("middle").src="profile.php?item=1";document.getElementById("right").src="blank.php";document.getElementById("bottom").src="blank.php";>Experience</a>'
to:
Code:
menu1[0]='<a href="#" onClick=document.getElementById("middle").src="profile.php?item=1";document.getElementById("right").src="blank.php";document.getElementById("bottom").src="blank.php";>Experience</a>'
Ordinarily, you would also need to add 'return false' to prevent the page from going to '#' but, I think that the script takes care of that for you, if not, add it like so:
Code:
menu1[0]='<a href="#" onClick="document.getElementById(\'middle\').src=\'profile.php?item=1\';document.getElementById(\'right\').src=\'blank.php\';document.getElementById(\'bottom\').src=\'blank.php\';return false;">Experience</a>'
Bookmarks