$(document).ready(function(){ 
  // jQuery stuff here

  $("#binarym a").fadeTo(0,.25);

  $("#binarym a").hover(function() {
	$(this).fadeTo('fast', 1);
      }, 
      function () {
        $(this).fadeTo('fast', .25);
  });

});

// cufon stuff here
  Cufon.replace('#tagline', { fontFamily: 'georgia' });
  Cufon.replace('#content h2, #content h3, #content h4, #sidebar h3', { fontFamily: 'lucida' });

