// JavaScript Document
$(document).ready(function () {   
	$('#navBrown li').hover(  
		function () {  
			$('ul', this).fadeIn(200);  
		},   
		function () {  
			$('ul', this).slideUp(0);           
		}  
	);
});
