﻿/// <reference path="jquery-1.3.1-vsdoc.js"/>

$(function() {
    // hide all javascript accessible content
    $(".jrollover img, input.jrollover").each(
        function() {
            jQuery("<img>").attr("src", this.src.replace(".gif", "_Over.gif"));
        }
    );
    // setup rollover actions
    $(".jrollover img, input.jrollover").hover(
        function() {
            if (this.src.search("_Over") < 0)
                this.src = this.src.replace(".gif", "_Over.gif");
        },
        function() {
            this.src = this.src.replace("_Over", "");
        }
    );
});
