Simple jQuery pulldown script.
$('ul#menu-main-menu li').hover( function() {
$('.sub-menu', this).show();
if( $(this).find('.sub-menu').length > 0 ) {
$(this).addClass('active');
}
}, function(){
$('.sub-menu', this).hide();
$(this).removeClass('active');
});