Font Awesome: For those looking to add support for IE7, and using SASS:
@mixin ie7icon($arguments...) {
*zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = #{$arguments});
}
.icon-music { @include ie7icon(''); }
.icon-search { @include ie7icon(''); }
.icon-envelope { @include ie7icon(''); }
// and so on...