﻿$(document).ready(function() {


    $("#mnu a img").fadeTo("fast", .7);
    $("input[type=text],textarea,input[type=password]").focus(function() {
        $(this).addClass('txtActive');
    });
    $("input[type=text],textarea,input[type=password]").blur(function() {
        $(this).removeClass('txtActive');
    });


    $("#mnu a img").hover(
    function() {
        $(this).fadeTo("fast", 1);
    },
    function() {
        $(this).fadeTo("normal", .7);
    }
  );

});
