Use jQuery, and run:

Code:
$(function(){
 $('li:hover').hover(function(){
  $(this).css('style', 'block')
 },
 function(){
  $(this).css('style', 'none')
 });

});
[*Edit: URL removed]