$(function(){
    // drop-down menu
    $('ul.dropdown li').hover(function() {
        $(this).addClass('hover');
        $('ul:first', this).css('display', 'block');
    },
    function() {
        $(this).removeClass('hover');
        $('ul:first', this).css('display', 'none');
    });

    // remove the border from the last list item of the dropdown
    $('ul.dropdown ul li:last').css('border', '0');
});
