// JavaScript Document


$(document).ready(function() {
						   $("#menu > ul > li[class!=outgoing] > a").each(function() {
																  $(this).attr("href", $(this).attr("href") + "#top");
																  });
						   $("#menu > ul > li > ul > li > a").each(function() {
																  $(this).attr("href", $(this).attr("href") + "#top");
																  });
						   $("#menu > ul > li").bind("mouseover", function() {
																			   $(this).children('ul').show(0);
																			   });
						   $("#menu > ul > li").bind("mouseout", function() {
																			   $(this).children('ul').hide(0);
																			   });
						   $("#menu > ul > li > ul > li").bind("mouseover", function() { $(this).parent().show(0); });
						   $("#menu > ul > li > ul").bind("mouseout", function() { $(this).hide(0) ; });
						   });