/// <reference path="jquery.js" />
//jQuery
$(document).ready(function() {
    $('#nav li a img').preload({
        find: '.jpg',
        replace: '_f2.jpg'
    });
    $('#nav li a img').hover(function() {
        if (this.id != 'current') {
            this.src = this.src.replace('.jpg', '_f2.jpg');
        }
    }, function() {
        if (this.id != 'current') {
            this.src = this.src.replace('_f2', '');
        }
    });
})