$(document).ready(function(){
	dropdownTaxonomyMenus();
});

function dropdownTaxonomyMenus() {
	// categories
	$(".post .taxonomy .categories .categories_items").each(function() {
		$(this).hide();
		$(this).parent().hover(function() {
			$(this).find(".categories_items").show();
		}, function() {
			$(this).find(".categories_items").hide();
		});
	});
	
	// taxonomy
	$(".post .taxonomy .tags .tags_items").each(function() {
		$(this).hide();
		$(this).parent().hover(function() {
			$(this).find(".tags_items").show();
		}, function() {
			$(this).find(".tags_items").hide();
		});
	});
}