jQuery(function ($) {
    $('.commentlist > li:last-child').addClass('last');
    
    $('#nav li:last-child').addClass('last');
    
    $('#nav > ul > li.has_dropdown').hover(function() {
    	$(this).addClass('hover');
    	$(this).find('.dropdown:eq(0)').show();
    }, function() {
    	$(this).removeClass('hover');
    	$(this).find('.dropdown:eq(0)').hide();
    });
    $('#nav ul li.has_dropdown ul li').hover(function() {
    	$(this).find('.dropdown:eq(0)').show();
    }, function() {
    	$(this).find('.dropdown:eq(0)').hide();
    });
    
});