
$(document).ready(function(){
$('#menu>li').hover(
		function () {
			//show its submenu
			$(this).toggleClass('sel');
			//$(this).children().css('border-color','#8f1c04');
			//$(this).prev().children().css('border-color','#6b1503');
			$('ul', this).fadeIn(200, function() {});
			
		}, 
		function () {
			//hide its submenu
			$(this).toggleClass('sel');
			//$(this).children().css('border-color','#dd4a2b');
			//$(this).prev().children().css('border-color','#dd4a2b');
			$('ul', this).fadeOut(200, function() {});
		}
	);
});

