$(document).ready(function(){
    $(".menu-head").hover(function() {
	if(!$(this).parent().find(".menu-body").is(":animated")){
        $(this).parent().find(".menu-body").slideDown('fast').show();

        $(this).parent().hover(
			function() {
				$(this).find(".menu-head").addClass("aa1");
            }, function(){
            $(this).parent().find(".menu-body").slideUp('fast').end().find(".menu-head").removeClass("aa1");
			//$(this).find(".menu_head").removeClass("aa1");
        });
	}
        }).hover(function() {
            //$(this).css({color:"#fff"});
        }, function(){
            //$(this).css({color:"#999"});
    });
});

