$(document).ready(function(){	
	$('.newsbody p').fadeTo(100,0.01);
	$(function() {
 		$(".more").click(function () { 
			$(this).parents(".newscontainer").find(".newsbody").animate({"height":"toggle"}, {queue:false,duration:600});
			$(this).parents(".newscontainer").find(".newsbody p").fadeTo(800,1);	
  			$(this).fadeTo(400,0.01, function() {$(this).siblings(".less").fadeIn();});
		});
	});
	$(function() {
 		$(".less").click(function () { 
			$(this).parents(".newscontainer").find(".newsbody p").fadeTo(800,0.01);
			$(this).parents(".newscontainer").find(".newsbody").animate({"height":"toggle"}, {queue:false,duration:600});
  			$(this).parents(".newscontainer").find(".more").fadeTo(400,1);
		});
	});
});



