// JavaScript Document
$(document).ready(function()
{
	$('#topnav li.topli').hover(function()
		{
			$(this).children('ul').slideDown(300);
    	 },
		 function()
		 {
			 $(this).children('ul').slideUp(1);
		 }
		 );
});