﻿
/*Load the content node edit links*/
    $(document).ready(function () {
        $(".editnode").hover(function (n) {
            //hover in
            $($(this).children(".editlink")).show();
        },
        function (n) {
            $($(this).children(".editlink")).hide();
        });
    }
     );

