$(document).ready(function(){ 
						   
	$("#link1").css("font-weight","bold");
	$("#link1").css("color","white");
	$("#tab2").hide();
	
	$("#link1").click(function() {
		show1();
		return false;
	});
	
	$("#link2").click(function() {
		show2();
		return false;
	});
	
	function show1() {
		fullReset();
		$("#tab1").show();
		$("#link1").css("font-weight","bold");
		$("#link1").css("color","white");
	}
	
	function show2() {
		fullReset();	
		$("#tab2").show();
		$("#link2").css("font-weight","bold");
		$("#link2").css("color","white");
	}
	
	function fullReset() {
		$(".tab").hide();
		$(".tablink").css("color","#999999");
		$(".tablink").css("font-weight","normal");
	}
				   
});