Hey,
Unless you are a great writer, sometimes your writing is going to come across as rude; thats the reason most fights start on msn. Obviously jscheuer didn't mean to offend, but he knows code.
Code:
function filterSwap(id,type){
document.getElementById(id).style.filter = type;
}
window.onload = function() {
var menuitems = document.getElementById('chromemenu').getElementsByTagName("a");
var i;
for (i=0; i<menuitems.length; i++){
if(document.attachEvent){
menuitems[i].attachEvent('onmouseover',filterSwap('main02','none'));
menuitems[i].attachEvent('onmouseout',filterSwap('main02','gray'));
}
}
}
Bookmarks