$(document).ready(function(){
    $(".menu-head").hover(function(index) {
		$(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");
        });
    });
});

