Hi, I'm building an html web page (no flash) and was wondering if it was possible to fade (or slide up from the horizontal rule) my navigation links into the page, one after the other, for the home page only, and ideally only for the first session visit. Aside from looking cool, I think it will draw the attention of the visitor and let them know where their main links are. I've experimented with animated .gif's, but not only was the implementation buggy, it didn't give me the flexibility to quickly edit the links.
I'm thinking some sort of JavaScript (or css?) can accomplish this, but I don't know the first thing about writing JavaScript and I couldn't find any script on the web. Does anyone know if such a script does exist, or if there's a better way I should go about doing this? Thanks!
Here's the structure for my main index:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="templates/styles.css">
<title>Test</title>
</head>
<body class="main">
<center>
<table border="0" cellspacing="0" cellpadding="0" width="800" class="header">
<tr>
<td align="left" valign="bottom" width="455" height="45"><a href="index.html" class="nav"><img src="images/logo.png" alt="Logo"></a></td>
<td align="right" valign="bottom" width="146" height="45"><a href="link1/index.html" class="nav">Link1</a></td>
<td align="right" valign="bottom" width="103" height="45"><a href="link2/index.html" class="nav">Link2</a></td>
<td align="right" valign="bottom" width="96" height="45"><a href="link3/index.html" class="nav">Link3</a></td>
</tr>
<tr>
<td align="center" valign="top" width="800" height="10" colspan="4"><hr noshade></td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="800">
<tr>
<td width="800" height="10"></td>
</tr>
<tr>
<td align="center" valign="top" width="800" height="440">
CONTENT WILL GO HERE
</td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="800">
<tr>
<td align="center" valign="bottom" height="45" class="footer">
<hr noshade>
</td>
</tr>
</table>
</center>
</body>
</html>