$(document).ready(function() {

    $('#Menu_Main').droppy({ speed: 50 });

    $(".editorcontextmenu").toggle(
    function() {
        $(this).attr("src", "/Images/ArrowUp.gif");
        $(this).next().next().css({ 'border': '2px solid #52c131' });
        $(this).next().css({ "background-color": "#52c131" });
        $(this).next().slideDown("slow");
    },
    function() {
        $(this).attr("src", "/Images/ArrowDown.gif");
        $(this).next().next().css({ "border": "0" });
        $(this).next().slideUp("slow");
    });

});
