I plucked up the courage and worked it out for myself. Anyone else who wants to try, this is what I did:
For each of the home boxes on home.php you have to replace:
<?php if( of_get_option('sc_homecontent2img')): ?><img src="<?php echo of_get_option('sc_homecontent2img') ?>" class="img-align-left" alt="<?php echo of_get_option('sc_homecontent2title') ?>" /><?php endif ?>
with:
`<?php if( of_get_option(‘sc_homecontent2img’)): ?><a href=”<?php echo of_get_option(‘sc_homecontent2url’) ?>” ><img src=”<?php echo of_get_option(‘sc_homecontent2img’) ?>” class=”img-align-left” alt=”<?php echo of_get_option(‘sc_homecontent2title’) ?>” /></a><?php endif ?>
`