	$(document).ready(function() {
	
	//tabs for profyplus.com
	var tabContainers = $('#navi > div');
  tabContainers.hide().filter(':first').fadeIn();
  $('#tab-nav a').click(function () {
    tabContainers.hide();
    tabContainers.filter(this.hash).fadeIn(100);
    $('#tab-nav a').removeClass('active');
    $(this).addClass('active');
    return false;
  }).filter(':first').click();
	
		// hide #d
		$("#b").hide();
		$("#bb").hide();	
		$("#d").hide();
		$("#f").hide();
		$("#ff").hide();
		$("#h").hide();
		$("#hh").hide();
		
		//enable
		$("#a").click(function() {
			$(this).hide();
			$("#b").show();
			$("#d").show();
			$("#e").show();
			$("#g").show();
			$("#bb").show();
			$("#ff").hide();
			$("#dd").hide();
			$("#hh").hide();
			$("#c").hide();
			$("#f").hide();
			$("#h").hide();
			
			
		});
		$("#d").click(function() {
			$(this).hide();
			$("#c").show();
			$("#a").show();
			$("#e").show();
			$("#g").show();
			$("#dd").show();
			$("#bb").hide();
			$("#ff").hide();
			$("#hh").hide();
			$("#b").hide();
			$("#f").hide();
			$("#h").hide();
			

		});
		$("#e").click(function() {
			$(this).hide();
			$("#f").show();
			$("#a").show();
			$("#d").show();
			$("#g").show();
			$("#ff").show();
			$("#bb").hide();
			$("#dd").hide();
			$("#hh").hide();
			$("#c").hide();
			$("#b").hide();
			$("#h").hide();

		});
		$("#g").click(function() {
			$(this).hide();
			$("#h").show();
			$("#a").show();
			$("#d").show();
			$("#e").show();
			$("#hh").show();
			$("#bb").hide();
			$("#dd").hide();
			$("#ff").hide();
			$("#b").hide();
			$("#c").hide();
			$("#f").hide();

			
		});
		
	});
