﻿$(document).ready(function () {
    $('a.ButtonNavItem').hover(
            function () {
                //$(this).find('span').animate({ bottom: "0px", lineHeight: "156px" }, 400);
                $(this).find('span').animate({ bottom: "0px", lineHeight: "38px" }, 400);
                $(this).find('div').animate({ bottom: "0px" }, 400);
            },
            function () {
                //$(this).find('span').animate({ lineHeight: "16px" }, 400);
                $(this).find('span').animate({ bottom: "-120px", lineHeight: "16px" }, 200);
                $(this).find('div').animate({ bottom: "-120px" }, 200);
            }
        )
}
)
