$(function()
{
	$('#menu_html li a').mouseover(function()
	{
		$(this).addClass('hover').stop().css({"display": "none", "opacity": "1"}).fadeIn(700);
	}).mouseout(function()
	{
		$(this).stop().fadeOut(700, function(){$(this).removeClass('hover').show()});
	});
});
