function animate_submenu() {
	if ($(".submenu_animate").length && !$("#bloque_submenu").hasClass("hidden")) {
		$("#bloque_submenu").show().animate({left:186}, 600, function() {
			$("#bloque_submenu").removeClass(".submenu_animate");
		});
	}
}
function animate_cuerpo() {
	$(function() {
		if ($(".cuerpo_animate").length) {
			$("#bloque_contenidos").show().animate({left:252}, 600, function() {
				$("#bloque_contenidos").removeClass(".cuerpo_animate");
			});
		}
	});
}
function animate() {
	animate_cuerpo();
	animate_submenu();
}

$(function() {
	setTimeout("animate();", 300);
});
