// JavaScript Document

// JavaScript Document

$(document).ready(function(){


$(".Nav img").hover( function() {

        this.src = this.src.replace("norm","hover"); },

        function() {

               this.src = this.src.replace("hover","norm");

        });

});

