﻿$(document).ready(function ()
{
	$(".sidenav ul li").hover(function ()
	{
		if ($(this).children().size() > 0)
		{
			$(this).children("a").css("color", "#FFFFFF");
			$(this).css("background", "#182837");
			$(this).css("cursor", "pointer");
		}
	}, function ()
	{
		$(this).children("a").css("color", "#000000");
		$(this).css("cursor", "default");

		if (!$(this).hasClass("mainmenu"))
		{
			$(this).css("background", "#EEE");
		}
		else
		{
			$(this).css("background", "#E5E5E5");
			$(this).children("a").css("color", "#035eb3");
		}
	});

	$(".sidenav ul li").click(function ()
	{
		if ($(this).children().size() > 0)
			window.location = $(this).find("a").attr("href");
	});
});
