	$(document).ready(function(){
		$('#nav1').css('backgroundColor','#555555');
		$('#tab_kat').fadeOut();
		$('#tab_cen').fadeOut();
		$('#to_hide1').hide();
		$('#to_hide2').hide();
		$('#to_hide3').hide();
		$('table.tab_ref0').show();
    });
	
	$(document).ready(function(){
		$('#nav1').click( function(){
			$(this).css('backgroundColor','#555555');
			$(this).next('td').css('backgroundColor','#8d8d8d');
			$(this).next('td').next('td').css('backgroundColor','#8d8d8d');
			$('#tab_kat').hide();
			$('#tab_cen').hide();
			$('#tab_ins').fadeIn(400);
		return false;
		});
    });

	$(document).ready(function(){
		$('#nav2').click( function(){
			$(this).css('backgroundColor','#555555');
			$(this).next('td').css('backgroundColor','#8d8d8d');
			$(this).prev('td').css('backgroundColor','#8d8d8d');
			$('#tab_kat').hide();
			$('#tab_ins').hide();
			$('#tab_cen').fadeIn(400);
		return false;
		});
    });	
	
	$(document).ready(function(){
		$('#nav3').click( function(){
			$(this).css('backgroundColor','#555555');
			$(this).prev('td').css('backgroundColor','#8d8d8d');
			$(this).prev('td').prev('td').css('backgroundColor','#8d8d8d');
			$('#tab_ins').hide();
			$('#tab_cen').hide();
			$('#tab_kat').fadeIn(400);
		return false;
		});
    });

