jQuery(document).ready(function() {

	//jQuery('.page-child .post p').css('opacity', 0);
		
	jQuery('.page .post p').hover(function() {
		jQuery('.page .post p, .page .post ul, .page .post hr').animate( {'opacity': 0.9 }, 250);
	},
	function() {
		jQuery('.page .post p, .page .post ul, .page .post hr').animate( {'opacity': 1 }, 250);
	});

	jQuery('.page .post p').toggle(function() {
		jQuery('.page .post p, .page .post ul, .page .post hr').animate( {'opacity': 0 }, 250);
	},
	function() {
		jQuery('.page .post p, .page .post ul, .page .post hr').animate( {'opacity': 1 }, 250);
	});

});

