$(document).ready(function() {
    // on mouse enter
    $('ul#competences li:not(.current-menu-item) a').mouseenter(function() {
        // animate
        $(this).animate({ top: '+=7em' }, 200);
    });

    // on mouse leave
    $('ul#competences li:not(.current-menu-item) a').mouseleave(function() {
        // animate
        $(this).animate({ top: '-=7em' }, 200);
    });

    // on click
    $('ul#competences li:not(.current-menu-item) a').click(function() {
        // clear mouse leave on current item
        $(this).unbind('mouseleave');

        // draw in previously selected item
        $('ul#competences li.current-menu-item').animate({ top: '-=7em' }, 200, function() {
            // remove class
            // $('ul#competences li.current-menu-item').removeClass('current-menu-item');
        });
    });

    // initialize slide stage: publications
    slidestage_init('slidestage-publications');

    // initialize tabs
    $('#menu_blogcats').tabify();
});
