﻿$(document).ready(function()
{
	$("ul.menu").children("li").hover(function()
	{
		$(this).children("ul").slideDown("fast").end().addClass("active");
	},
	function()
	{
		$(this).children("ul").slideUp("fast").end().removeClass("active");
	});
	
	$("ul.menu").children("li").children("ul").children("li").hover(function()
	{
		$(this).css({backgroundColor: "#ffab49"});
	},
	function()
	{
		$(this).css({backgroundColor: "transparent"});
	});
});
