﻿$(document).ready(function () {

    $("div#tabscontainer ul li a").hover(function () 
    {
        var e = this;

        $(e).stop().animate({ top: "-30px" }, 100, function () 
        {
            $(e).animate({ top: "-36px" }, 150);
        });
    },
    function () 
    {
        var e = this;

        $(e).stop().animate({ top: "-74px" }, 250, function () 
        {
            $(e).animate({ top: "-70px" }, 250);
        });

    });
});

