$(document).ready(function(){                 
    $("#top_menu a").hover(function() {
        $(this).stop().animate({ color: "#fff" }, 600);
    },function() {
        $(this).stop().animate({ color: "#000" }, 600);
    });
    
    $("#col2 a").hover(function() {
        $(this).stop().animate({ color: "#fff" }, 600);
    },function() {
        $(this).stop().animate({ color: "#e6bb13" }, 600);
    });
    
    $("#top_menu_p ul a").hover(function() {
        $(this).stop().animate({ color: "#e6bb13" }, 600);
    },function() {
        $(this).stop().animate({ color: "#000" }, 600);
    });
    
    $(".block2 ul a").hover(function() {
	$(this).stop().animate({ color: "#fff" }, 600);	
    },function() {
	if($(this).parent().hasClass('active')) {}
	else {
	        $(this).stop().animate({ color: "#e6bb13" }, 600);
	}
    });    
    $("#tooltip_catalogue_content a").hover(function() {
        $(this).stop().animate({ color: "#fff" }, 600);
    },function() {
        $(this).stop().animate({ color: "#000" }, 600);
    });    
    $("#goods_list a").hover(function() {
        $(this).stop().animate({ color: "#E6BB13" }, 600);
    },function() {
        $(this).stop().animate({ color: "#555" }, 600);
    });        
    
    $("#cloud_new > a > div").fadeTo(0, 0);
    $("#cloud_consult > a > div").fadeTo(0, 0);
    $("#cloud_new > a > div").hover(function() {
        who = $(this);        
        $(who).stop().fadeTo('100', 1);
    },function() {
        $(who).stop().fadeTo('100', 0);
    });
    $("#cloud_consult > a > div").hover(function() {
        who = $(this);        
        $(who).stop().fadeTo('100', 1);
    },function() {
        $(who).stop().fadeTo('100', 0);
    });    
});
