$(document).ready(function(){
//	 $(".page").fadeIn(1500);
	
	 $("#linkstart").click(function () {
	 		$(".linki").removeClass("active");
	 		$("#linkstart").addClass("active");
			$("#chntv").fadeOut('slow', function() {
							$("div.right_container").scrollTo(0);
							$("#start").fadeIn('slow');
							$(".content:not(#start)").hide();
			});
    });

	 $("#linkchntv").click(function () {
	 		$(".linki").removeClass("active");
	 		$("#linkchntv").addClass("active");
			$("#start").fadeOut('slow', function() {
							$("div.right_container").scrollTo(0);
							$("#chntv").fadeIn('slow');
							$(".content:not(#chntv)").hide();
			});
    });
	


	 $("a").hover(function(){$(this).fadeTo(60, 0.50);$(this).fadeTo(200,1);});
});
