jQuery(function(){
	
	$('.post').hover(function(){		
		$("#"+$(this).attr("id")+" .pelicula-vista2").fadeIn(150);
	}, function(){
		$("#"+$(this).attr("id")+" .pelicula-vista2").fadeOut(150);
	});

	$('.flecha-menu').toggle(function() {
		$("#cat-menu").fadeOut(150,function(){
			$(".wp-tag-cloud").fadeIn(150);
		});
	}, function() {
		$(".wp-tag-cloud").fadeOut(150,function(){
			$("#cat-menu").fadeIn(150);
		});
	});
	
});
