$(function() {
	$('.community').mouseover(function(e){
            $('.xsubmenu').stop(true, true).slideDown(200);
        });
		
    $('.xsubmenu').hover(function(e){
            $(this).stop(true, true).slideDown(200);
        },function(e){
            $(this).stop(true, true).slideUp(200);
        });
});
