jQuery(document).ready(function() {
	 $('#twitterlink strong').hide()
    .animate({
      opacity: '0',
      left: '-118px',
      top: '-49px'
    },0
  );
  $('#twitterlink').hover(
    function() {
      $(this)
        .find('strong').show()
        .animate({
          opacity: '0.8',
          left: '-118px',
          top: '-49px'
        },200
      );
    },
    function() {
      $(this)
        .find('strong')
        .animate({
          opacity: '0',
          left: '-118px',
          top: '-49px'
        },200,
        function() {
          $(this).hide();
        }
      );
    }
  );
	
	
  
});