<html>
<head>
<script src="jquery-1.2.js"></script>
<script>
$(document).ready(function() {
$("#fadein").fadeIn("slow");
});
</script>
</head>
<body>
<div id="fadein" style="display: none;font-size: 100px;">
fadein
</div>
</body>
</html>