$(document).ready(function(){

	var $cajon = $("#content .post .comparte-cajon");

	$("#content .post h4.comparte").hover(function() {
		$("#content .post .comparte-cajon").animate({
			left: "0",
			opacity: "1"
		}, 700);
	});
	
	$("#content .post .share")
	.mouseleave(function(){
		cierra = setTimeout(function() {
			$("#content .post .comparte-cajon").animate({
				left: "-165",
				opacity: "0"
			}, 700);
		}, 1000);
	})
	
	.mouseenter(function() {
		clearTimeout(cierra);
	})
	
	$(document).ready(function(){
		$("#popornew").tabs();
	});
	
	$('.nothome #featured ul').innerfade({
		animationtype: 'fade',
		speed: 750,
		timeout: 5000,
		type: 'sequence',
		containerheight: '30px'
	});

});