<?php
/*
Plugin Name: Make Image Links
Plugin URI: http://dualrudder.com/
Description: This plugin changes text of the form image#### into a hyperlink
Author: Dave Parsons
Version: 1.0
Author URI: http://dualrudder.com/
*/ 

class image_links {
    function 
filter_add_link($content) {
        return 
preg_replace('/image(\\d+)/','<a href="/albums/rv7/images/IMG_$1.jpg"><img alt="image $1" src="/albums/rv7/thumbnails/IMG_$1.jpg" /></a>'$content);
    }
}

add_filter('the_content', array('image_links''filter_add_link'));
add_filter('the_excerpt', array('image_links''filter_add_link'));

?>