﻿$(document).ready(function () {
    $(".expandCat").find("li").hide();

    $(".expandCat").click(
		function () {


		    $(this).children("ul").children("li").slideDown("fast");
		    $(".footer").hide();

		});

    $(".expandCat").hover(
		function () {




		},
		function () {

		    $(this).children().find('li').slideUp("slow");
		    $(".footer").show();
		});






});
