$(document).ready(function() {
    $('.skills').hide();
    $('.trigger').hover(function() {
        $(this).next('.skills').toggle();
    });
});
