$(document).ready(function(){
    $('input.inputhint').inputhint();
    $('a').hover(function(){
      img = $(this).find('img');
      img.fadeTo('slow', .5);
    }, function(){
      img = $(this).find('img');
      img.fadeTo('slow', 1);
    });
});
