﻿$(document).ready(function () {

    $('.VerticalMenu ul li a:not(.Selected)').hover(
        function () {
            $(this).animate(
            {
                marginLeft: "10px"
            }, 100);
        },
        function () {
            $(this).animate(
            {
                marginLeft: "0px"
            }, 100);
        }
    );

    $('.HorizontalMenu ul li a:not(.Selected)').hover(
        function () {
            $(this).animate(
            {
                marginTop: "-10px"
            }, 100);
        },
        function () {
            $(this).animate(
            {
                marginTop: "0px"
            }, 100);
        }
    );
});
