$(document).ready(function() {
// PRELOAD
$.preload( '#menu li a img', { find:'_', replace:'_hover' });

// HOVER
$('#menu li a img').hover(function(){
this.src = this.src.replace('_','_hover');
},function(){
this.src = this.src.replace('_hover','_');
});
});
