$(document).ready(function(){ 
  // jQuery stuff here
	$('#slides').cycle();

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

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

}); 
