$(document).ready(function(){

		$(".news_details").hide();
		$(".news_intro").append('<p> <a href="#" class="news_show">Click here to read more...</a> </p>');
		$(".news_details").append('<p> <a href="#" class="news_hide">Hide story</a> </p>');

		$(".news_show").click(function(event){
			$(this).hide();
			$(this).parents("div").next(".news_details").slideToggle("slow");
			return false;
			});

		$(".news_hide").click(function(event){
			$(this).parents("div.news_details").slideToggle("slow");
			$(this).parents("div").prev(".news_intro").find(".news_show").toggle();
			return false;
			});
		});
