change this img src
by abufiddle
HTML
<a class="collapse" name="2" href="http://asdf.net/forums/index.php/funcs.php?action=collapse2;c=2;sa=collapse;ac60a9c=fe78f020bc327d137ff09fb92d032584"><img...
JavaScript
var smf_images_url = 'http://visualpulse.net/forums/Themes/VP-TWO-POINT-OH/images';
$('a.collapse').live('click', function() {
var opsaction = 'expand';
// also change the image to fit
$('img', this).attr('src', smf_images_url + '/' + opsaction + '.gif');
return false;
});