Eu fiz uma correção no codigo e funcionou a animação... <html>
<head>
<style type="text/css">
body {
background: #eee;
}
#animado {
background: #008;
position: absolute;
width: 200px;
height: 200px;
border: 1px solid #00f;
}
#animado h3 {
font-family: Verdana;
}
</style>
<script type='text/javascript' src='jquery.js'></script>
<script type="text/javascript">
$(document).ready(function(msg) {
$("#animado").animate({left: 300, top: 400}, 1500);
});
</script>
</head>
<body>
<div id="animado">
<h3>Este é uma DIV animada!!</h3>
</div>
</body>
</html>
<html> Espero ter ajudado... :D