$(document).ready(function()
{
	$(".menu_child a").mouseenter(function()
	{
		$(this).stop().animate(
		{
			'backgroundColor' : '#595959'
		}, 150);
	});

	$(".menu_child a").mouseleave(function()
	{
		$(this).stop().animate(
		{
			'backgroundColor' : '#0D0D0D'
		}, 150);
	});
});

