$(function(){
	$('#menu li').hover(function(){

		var _this = $(this),
			_subnav = _this.children('ul');
 
		_this.css('backgroundColor', '');
		_subnav.stop(true, true).fadeIn(200);
	} , function(){

		$(this).css('backgroundColor', '').children('ul').stop(true, true).fadeOut(200);
	});
 
	$('a').focus(function(){
		this.blur();
	});
});
