


/* docready js */
jQuery(document).ready(function () {

  /* footer twitter link */
  jQuery('#twitterlink strong').hide()
    .animate({
      opacity: '0',
      left: '-117px',
      top: '-35px'
    },0
  );
  jQuery('#twitterlink').hover(
    function() {
      jQuery(this)
        .find('strong').show()
        .animate({
          opacity: '0.8',
          left: '-117px',
          top: '-49px'
        },200
      );
    },
    function() {
      jQuery(this)
        .find('strong')
        .animate({
          opacity: '0',
          left: '-117px',
          top: '-35px'
        },200,
        function() {
          jQuery(this).hide();
        }
      );
    }
  );
/* */
});