Используйте CSS, нет необходимости в javascript.
<a href="#" class="image">Hello</a>
<style>
.image {
padding-left: 20px; // width of image
background: url(image.jpg) no-repeat scroll left center;
height: 20px; // height of image
line-height: 20px; //height of image
// other rules that you need
}
</style>