  $(document).ready(function() {

$('input[class^="validate"]').focus(function(){
    $(this).validationEngine('hide');
});

$(".item").hover(
      function() {
        $("#hright_"+$(this).attr("id")).attr("src","/img/menu/ma_arr.gif");
        $("#hbottom_"+$(this).attr("id")).attr("src","/img/menu/ma_razd.gif");
        $("#submenu_"+$(this).attr("id")).css("display","block");
      },
      function() {
        $("#hright_"+$(this).attr("id")).attr("src","/img/s.gif");
        $("#hbottom_"+$(this).attr("id")).attr("src","/img/menu/m_razd.gif");
        $("#submenu_"+$(this).attr("id")).css("display","none");
      }
    );

    $("#i_tweet").hover(
      function() {
        $("#i_tweet").attr("src","/img/other/i_tweet_a.png");
      },
      function() {
        $("#i_tweet").attr("src","/img/other/i_tweet.png");
      }
    );
    $("#i_face").hover(
      function() {
        $("#i_face").attr("src","/img/other/i_face_a.png");
      },
      function() {
        $("#i_face").attr("src","/img/other/i_face.png");
      }
    );
    $("#i_youtube").hover(
      function() {
        $("#i_youtube").attr("src","/img/other/i_youtube_a.png");
      },
      function() {
        $("#i_youtube").attr("src","/img/other/i_youtube.png");
      }
    );
    $("#i_google").hover(
      function() {
        $("#i_google").attr("src","/img/other/i_google_a.png");
      },
      function() {
        $("#i_google").attr("src","/img/other/i_google.png");
      }
    );
  });

