[jQuery] jQuery Plugin: jQIR - jQuery Image Replacement

[jQuery] jQuery Plugin: jQIR - jQuery Image Replacement

An alternative to image replacement (of heading) using CSS. HTML
markup would be something like this:
<h1 id="heading1" class="jqir">Heading 1</h1>
<h1 id="heading2" class="jqir">Heading 2</h1>
<h1 id="heading3" class="jqir">Heading 3</h1>
The id refers to the name of the image (minus the extension). The
class is just to make sure it isn't used on any elements that don't
have an image alternative.
$(window).load(
    function()
    {
        $(".jqir").jQIR("png", "images/");
    }
);
Sample (and code) found here:
http://sam.collett.googlepages.com/jQIR.html
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/