$(document).ready(function()
{
	$('ul#menu_top li a').hover(function()
	{
		$(this).prev().fadeIn(300);
	},
	function()
	{
		$(this).prev().fadeOut(300);
	});
});

