Image replacement technique

Superier method to the Fahrner Image Replacement technique

http://www.kryogenix.org/code/browser/lir/

A technique devloped by Stuart Langridge and Seamus Leahy (separately) to replace elements with an image.  Example:

h1#newrepl {
    padding: 35px 0 0 0;
    overflow: hidden;
    background-image: url("hello_world.gif"); 
    background-repeat: no-repeat;
    height: 0px !important; /* for most browsers */
    height /**/:35px; /* for IE5.5's bad box model */
}