$(document).ready(
	function() {
		
		$("#news a").css("color","#484747");
		setTimeout("printer()",2000);
		/*

		$(".text-news p+img:not(:first), .text-news img+p:not(:first), .text-news p.alone").hide();
		$(".text-news h2:not(:first)").after("<span class=\"news-show\">Show</span>");
		$(".text-news p+img:not(:first), .text-news img+p:not(:first), .text-news p.alone").css("opacity","0");
		$(".news-show").css("cursor","pointer");
		$(".news-show").click( function() {
			$(this).fadeOut()
			gen = $(this).parent().attr("id");
			$("#"+gen+" img, #"+gen+" img+p, #"+gen+" p.alone").slideDown().animate({ opacity:"1" });
			}
		);
	
		*/	
	}
);


