$(document).ready(function(){
	$("#tab_box_1").fadeIn("slow");						   
	$("#first_tab").addClass("fixed");
	$(".tab-fixed a").click(function(){
		$(".moving-body").hide();
		$("#"+this.rel).fadeIn("slow");
		$(".tab-fixed a").removeClass("fixed");
		$(this).addClass("fixed");
		});
	});
