/* this javascript makes the paragraph hover (p:hover) functional in IE6 I obtained this code from http://annevankesteren.nl/test/phover/ */ function phover(){ if (!document.getElementById) return var p = document.getElementsByTagName('p'); for(var i = 0; i < p.length; i++){ p[i].onmouseover = function(){ this.className = 'hover'; } p[i].onmouseout = function(){ this.className = ''; } } } window.onload = phover;