// JavaScript Document

$(document).ready(function(){
	$('#nav_top').find('ul').css('display','none');
	$('#nav_top li').hover(
		function() {
			$(this).find('ul').stop(true,true).slideDown();
		},
		function() {
			$(this).find('ul').stop(true,true).slideUp();
		});
	$('#nav').find('ul').css('display','none');
	$('#nav li').hover(
		function() {
			$(this).find('ul').stop(true,true).slideDown();
		},
		function() {
			$(this).find('ul').stop(true,true).slideUp();
		});
});
