You got to be careful if you don't know where you're going, because you might not get there. - Yogi Berra
You got to be careful if you don't know where you're going, because you might not get there.
Cross-browser dropdowns in 4 lines with jQuery:
$('#nav li').hover( function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); } );