﻿//jquery implementation for laddersafetytraining.org
//
//author:jeremy chambers
//http://www.jeremychambers.com
//
//created: 01/17/2009
//updated:
//
//


//image preloading


$(document).ready(function() {
    // do stuff when DOM is ready

    //Image Roll Overs
    $(function() {
    $(".hover img").hover(function() {
            $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
        }, function() {
            $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
        });
    });
    //Input Roll Overs
    $(function() {
        $("input.hover").hover(function() {
            $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
        }, function() {
            $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
        });
    });
    


});



 
