$(document).ready(function() {
    preloadMenuRollovers();
    $('#sidemenu img').mouseover(menuOver);
    $('#sidemenu img').mouseout(menuOut);
});

function preloadMenuRollovers() {
    var re = /b_(.*)\.gif/;
    $('#sidemenu img').each(function() {
        var match = this.src.match(re);
        this.name = match[1];
        $('#sidemenupreload').append("<img src='/pix/b_" + this.name + "_ov.gif'/>");
    });

}

function menuOver(event) {
    $(this).attr('src', '/pix/b_' + this.name + '_ov.gif');
}

function menuOut(event) {
    $(this).attr('src', '/pix/b_' + this.name + '.gif');
}


