﻿$(document).ready(function() {

    $("a img").hover(function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-off', '-on'));
    }, function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-on', '-off'));
    });
    
    $("input").hover(function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-off', '-on'));
    }, function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-on', '-off'));
    });

    $("img").hover(function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-off', '-on'));
    }, function() {
        var t = $(this);
        t.attr('src', t.attr('src').replace('-on', '-off'));
    });


})

