/*
// "K2" Menu Category Module by Nicholas Lima for Joomla! 1.5.x - Version 1.0
// Copyright (c) 2009 Nicholas Lima - All rights reserved.
// Released under the GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
// More info at http://www.digietal.net
// Original Module Designed and developed by JoomlaWorks - This module is based on k2 Module from JoomlaWorks.
// *** Last update: JUN 18th, 2009 ***
*/

function IEHoverPseudo(){
    var navItems = document.getElementById("nav").getElementsByTagName("li");
    
   for (var i=0; i<navItems.length; i++) {
      if(navItems[i].className == "submenu"){
		  
         if(navItems[i].getElementsByTagName('ul')[0] != null) {
            navItems[i].onmouseover=function() {this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#c00";}
            navItems[i].onmouseout=function() {this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#FFFFFF";}
         }
      }
   }
})

window.onload = IEHoverPseudo;