$(document).ready(function () {
 
    Menu.Init();

 

});
Menu = {
    ImageBase: root,
    Init: function () {
        $('.nav img').preload({
            find: '.png',
            replace: '_f2.png',
        });
        $('.nav img').hover(function () {
            Menu.Over(this);
        }, function () {
            Menu.Out(this);
        });
    },
    Over: function (elt) {
        if (!$(elt).hasClass('on')) {
            SetImage(elt, $(elt).attr('src').replace('.png', '_f2.png'));
        }
    },
    Out: function (elt) {
        if (!$(elt).hasClass('on')) {
            SetImage(elt, $(elt).attr('src').replace('_f2', ''));
        }
    }
}
function SetImage(elt, src) {
    $(elt).attr('src', src);
}

function RefreshContent(id, content) {
    $('[rel=' + id + ']').html(content);
}
