$(function() {
  $("img").css("opacity", "0.5");
  $("img").hover(function() {
    $(this).stop().animate({
      opacity: 1.0
    }, "slow");
  },
  
  function() {
    $(this).stop().animate({
      opacity: 0.5
    }, "slow");
  });
  $("#seeNews").click(function() {
    $("#canto").hide();
    $("#twitter").animate({
      left: '+=300'
    }, 500, function() {
      //complete
    });
  });
});