﻿
$(document).ready(function()
{
    $("#MenuWrapper li").mouseenter(function() { 
        $(this).find("a").animate({ color: "#a4a4a4" }, 200);
    });
    $("#MenuWrapper li").mouseleave(function() {
        $(this).find("a").animate({ color: "White" }, 200);
    });

    $("#ReservedAreaAnchor").open({
        left: 360, top: 140,
        width: 290, height: 190
    });
});

