// --- this is for icons - twitter, facebook, rss ---
$(document).ready(function() {
    $("#facebook a").hover(
          function () {
            $("#hint").css({'background-position' : '-82px bottom'});
          }, 
          function () {
            $("#hint").css({'background-position' : 'left bottom'});
          }
        );
    $("#twitter a").hover(
          function () {
            $("#hint").css({'background-position' : '-164px bottom'});
          }, 
          function () {
            $("#hint").css({'background-position' : 'left bottom'});
          }
        );
    $("#rss a").hover(
          function () {
            $("#hint").css({'background-position' : '-246px bottom'});
          }, 
          function () {
            $("#hint").css({'background-position' : 'left bottom'});
          }
        );
 });
