var mouseover_id = [];
var mouseout_id = [];

$(document).ready(function(){
    $(".menu-head").hover(function(index) {
	//if(!$(this).parent().find(".menu-body").is(":animated")){
		//clearTimeout(mouseout_tid[index]);
		//mouseover_tid[index] = setTimeout(function() {
        //$(".menu-body").hide().stop(true,false);
		
		$(this).parent().find(".menu-body").stop(true,true).slideDown('fast').show();
		
		
        $(this).parent().hover(
			function() {
				$(this).find(".menu-head").addClass("aa1");
				if($(this).find(".down-nav-02")){
					$(this).find(".down-nav-02").addClass("aa2");
					};
            }, function(){
				//clearTimeout(mouseover_tid[index]);
				//mouseout_tid[index] = setTimeout(function() {
            		$(this).parent().find(".menu-body").slideUp('fast').end().find(".menu-head").delay(1000).removeClass("aa1").removeClass("aa2");
				//}, 300);
			//$(this).find(".menu_head").removeClass("aa1");
        });
	//}
	//}, 300);
        }).hover(function() {
            //$(this).css({color:"#fff"});
        }, function(){
            //$(this).css({color:"#999"});
    });
	
	
	
	    $(".share-head").hover(function(index) {
		$(this).parent().find(".share-body").stop(true,true).slideDown('fast').show();
        $(this).parent().hover(
			function() {

            }, function(){
            		$(this).parent().find(".share-body").slideUp('fast').end().find(".share-head").delay(1000);
        });
        }).hover(function() {
        }, function(){

    });
	
	
	
	
});

