// (c) 2007 Chris Montijn

$(document).ready( function() {
    $('.imgLink').mouseover(function() {
        $('#' + this.id).attr('src', 'k/images/fp_' + this.id + '_a.png');
    });
    $('.imgLink').mouseout(function() {
        $('#' + this.id).attr('src', 'k/images/fp_' + this.id + '_i.png');
    });
});

