$(function () { 
  $("#rw-lang a").hover(function () {
    $("span",$(this).parent()).eq(1)
      .stop()
      .fadeTo(500,.1);
  }, function () {
    $("span",$(this).parent()).eq(1)
      .stop()
      .fadeTo(1500,1);
  });

  $("#rw-title").dropShadow({
      left: 2,
      top: 2,
      blur: 3,
      opacity: 2,
      color: "white",
      swap: false
  });
});

