﻿$(document).ready(function () {
    $("#footer").hover(function () {
        $('#footer h4').show();
        $('#footer ul').show();
        $('#footer').stop().animate({ height: "220px" }, 300, function () {
            $('#footer').addClass('selected');
        });
    }, function () {
        $('#footer').stop().animate({ height: "60px" }, 500, function () {
            $('#footer').removeClass('selected');
            $('#footer h4').hide();
            $('#footer ul').hide();
        });
    });
});
