$(document).ready(function(){
	$(".text").click(function()
	{
		$(this).find("a").toggleClass("active");
		$(this).find(".newstext").toggleClass("active");
		return false;
	});
});