

$(document).ready(function() {
	$(function() {

        $.preload(news_images, {});
        
        $(".news_click").removeAttr("href");
		$('#news_feed').hide();


        $(".news_click").click(function(){
			var news_id = $(this).attr('id');


			$("#news_body").fadeOut("slow",function(){
              $(this)
				.html($("#news_feed_body_" + news_id).html())
				.fadeIn("slow");
			});

            $("#news_image").fadeOut("slow",function(){
			   $(this)
			   		.attr("src",news_images[news_id])
			   		.fadeIn("slow");


			});







        });
	});
});
