$(document).ready(function() {
  $("#text").animate(
    {top: ($("#text").height() - ($("#text").parent().height() * 2))},
    10000
  );

  // broken in IE 6 (wine)
  $("#text2").animate(
    {left: ($("#text2").width() - $("#text2").parent().width() - $("#text2").parent().width())},
    10000
  );

});
