$(function() {
    $('#js').remove();
    
    $('.description p').hide();
    $('.description').mouseenter(function () {
        $(this).children("p").slideToggle("normal");
    });
    $('.description').mouseleave(function () {
        $(this).children("p").slideToggle("normal");
    });
  
    $('#photography li a').mouseenter(function () {
        $(this).children('.title').show();
    });
    $('#photography li a').mouseleave(function () {
        $(this).children('.title').hide();
    });

    $('#software li').mouseenter(function () {
        $(this).children('.software-description').show();
    });
    $('#software li').mouseleave(function () {
        $(this).children('.software-description').hide();
    });
    
});
