
/* docready js */
jQuery(document).ready(function () {
  /*jQuery('ul.mt-nav').superfish({
    delay: 500,
    animation: {
      opacity: 'show',
      height: 'show'
    },
    speed: 'fast',
    autoArrows: false,
    dropShadows: false
  });*/
  /* 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();
        }
      );
    }
  );
/* */
});
