(function($){
$(".footer-image").live('hover', function(e) {
if (e.type == 'mouseover') {
var color_src = $(this).attr('src').replace('_fade', '');
$(this).attr('src', color_src);
}
if (e.type == 'mouseout') {
var orig_src = $(this).attr('src').replace('_fade', '').replace('.png', '_fade.png');
$(this).attr('src', orig_src);
}
});
})(jQuery);