var VERUM = {
    init: function () {
        /* menu hover */
        $('#nav > li').hover(
            function () { $(this).addClass('hover'); },
            function () { $(this).removeClass('hover'); }
        );
        $('#nav li:last-child').addClass('last');
        $('#right .button').hover(
            function () { $(this).addClass('hover'); },
            function () { $(this).removeClass('hover'); }
        );
        $('#right .button').click(function (e) {
            e.preventDefault();
            var destination = $('a', this).attr('href');
            if (destination) {
                window.location = destination;
            }
        });
        VERUM.preloadImages(['/images/submenu.png']);
    },
    preloadImages: function (images) {
        var image = new Image();
        for (var i = 0; i < images.length; i++) {
            image.src = images[i];
        }
    }
};

$(document).ready(function () {
    VERUM.init();
});
