function pause(numberMillis) {
			var now = new Date();
			var exitTime = now.getTime() + numberMillis;
			while (true) 
			{
			now = new Date();
			if (now.getTime() > exitTime)
			return;
			}
		} 
		function recordOutboundLink(link, category, action) {
		  try {
		    var pageTracker=_gat._getTracker("UA-1472212-1");
		    pageTracker._trackEvent(category, action);
		    pause(100)
		  }catch(err){}
		}
		
		$(document).ready(function () {
		  /* footer twitter link */
		  $('#twitterlink strong').hide()
		    .animate({
		      opacity: '0',
		      left: '0px',
		      top: '-35px'
		    },0
		  );
		  $('#twitterlink').hover(
		    function() {
		      $(this)
		        .find('strong').show()
		        .animate({
		          opacity: '0.8',
		          left: '0px',
		          top: '-52px'
		        },200
		      );
		    },
		    function() {
		      $(this)
		        .find('strong')
		        .animate({
		          opacity: '0',
		          left: '0px',
		          top: '-35px'
		        },200,
		        function() {
		          $(this).hide();
		        }
		      );
		    }
		  );
		/* */
		});
