Hi, cut & paste the code into a html box on your BV page & preview.
The fading in of the next page a done on that page via efects in page properties.
You can ajust the time delay via the 5000 (5secs) in this part of the script.
Good luck.
HTML Code:
<html>
<title>CodeAve.com(javascript: Timed Redirect on Page Load)</title>
<body onload=setTimeout("location.href='http://www.collectors-info.com'",5000) bgcolor="#FFFFFF">
This page contains an onload command that will redirect the browser
<br>
to Yahoo! 5 seconds after the page has loaded
<br>
If your browser does not continue on to Collectors-info.com!<br>
Click <a href="http://www.collectors-info.com">here</a>
</body>
</html>