﻿// JScript File


    $(document).ready(function(){
        var movement=0;
        /*$("li.back").css({
                              "left" : "0px"
                          })*/

    $("#mancala-footer-top").css({
        "height": '50px', /* 56px */
        "overflow": 'hidden'
    })

    $("#mancala-footer").css({
        "height": '50px'/* 56px */
    })

    function animateUp() {
        $("#mancala-footer-top").animate({
            "height": "196px" /* 180px*/
        }, 500);
        $("#mancala-footer").animate({
            "height": "196px"/* 180px*/,
            "marginTop" : "-146px" /* -124px*/
        });
    };
    
    
    function animateDown() {
        $("#mancala-footer-top").animate({
            "height": '50px'/* 56px */
        }, 500);
        $("#mancala-footer").animate({
            "height": '50px'/* 56px */,
            "marginTop" : "0px"
        });
    };

        $("#mancala-footer").mouseenter(function(){
            if (!$(this).is(':animated')) {
                animateUp();
            }
        });

        $("#mancala-footer").mouseleave(function(){
            animateDown();
        });
});

