Hi Nick,
The menu is just links so it won't do any automatic redirect.
I think the way I would do it is to create a page named index.aspx and make it redirect to whatever page you want and then add it as a default document in IIS putting it higher in the list than Default.aspx
Implementation of the index.aspx redirector page would be like this, create a text file and paste in the code below, then edit the url where it redirects to what you want. Drop it in the root and configure it as a higher priority default document.
Hope it helps,
Joe
Code example:
<%@ Page Language="C#" ClassName="Index.aspx" Inherits="System.Web.UI.Page" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("http://www.google.com"):
}
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Index</title>
</head>
<body>
<form id="form1" runat="server">
</form>
</body>
</html>