$(function() {
	$("#allCategoryArticles-content").hide();
	$("#allcategoryarticles").hover(function() {
    		$("#hovertextCat").hide();
    		$("#allCategoryArticles-content").fadeIn();
    	}, function() {
    		$("#allCategoryArticles-content").fadeOut();
    		$("#hovertextCat").fadeIn();
    	});

	$("#tagcloud-content").hide();
	$("#tagcloud").hover(function() {
    		$("#hovertextTag").hide();
    		$("#tagcloud-content").fadeIn();
    	}, function() {
    		$("#tagcloud-content").fadeOut();
    		$("#hovertextTag").fadeIn();
    	});

	$("#tagcloud-content").hide();
	$("#stickyrecords").hover(function() {
    		$("#hovertextSticky").hide();
    		$("#stickyrecords-content").fadeIn();
    	}, function() {
    		$("#stickyrecords-content").fadeOut();
    		$("#hovertextSticky").fadeIn();
    	});
});

