// JavaScript Document

$(document).ready(function() {
	// Find active menu entry
	var bodyVar = ($('body').attr('id')).substring(5, 8);
	$('li#navLeft'+bodyVar).addClass('act');
	
	// Show/Hide Reference Table Rows
	// 1. Hide all additional table rows
	$('table.referenceTable tr:nth-child(1)').css('display','block');
	$('table.referenceTable tr:nth-child(2)').css('display','block');
	$('table.referenceTable tr:nth-child(3)').css('display','block');
	$('table.referenceTable tr:nth-child(4)').css('display','block');
	
	// 2. Show/Hide Button
	$('.showBtn').click(function() {
		$('table.referenceTable tr').css('display','block');
		$('div.legende').css('display','block');
		$(this).css('display','none');
		$('.hideBtn').css('display','block');
	});
	$('.hideBtn').click(function() {
		$('table.referenceTable tr').css('display','none');
		$('div.legende').css('display','none');
		$(this).css('display','none');
		$('table.referenceTable tr:nth-child(1)').css('display','block');
		$('table.referenceTable tr:nth-child(2)').css('display','block');
		$('table.referenceTable tr:nth-child(3)').css('display','block');
		$('table.referenceTable tr:nth-child(4)').css('display','block');
		$('.showBtn').css('display','block');
	});
});
