// JavaScript Document

$(document).ready(function(){

	
	$('#uab_1').hide();
	$('#uab_2').hide();
	$('#uab_3').hide();

	$('.tc_1').hide();
	$('.tc_2').hide();
	$('.tc_3').hide();


	$('input[type=checkbox].main_cat_1').attr('checked', 'checked');
	$('input[type=checkbox].main_cat_2').attr('checked', 'checked');
	$('input[type=checkbox].main_cat_3').attr('checked', 'checked');

	$("#tctl_1").click(function () { 
	
		$('.tc_1').toggle();
		$('#uab_1').toggle();
	});
	
	
	$("#tctl_2").click(function () { 
	
		$('.tc_2').toggle();
		$('#uab_2').toggle();

	});
	
	
	$("#tctl_3").click(function () { 
	
		$('.tc_3').toggle();
		$('#uab_3').toggle();
	});
	
	
	
    $("#uab_1").toggle(
      
	  function () {
        
		$('input[type=checkbox].main_cat_1').attr('checked', '');
      
	  },
     
	  function () {
        
		$('input[type=checkbox].main_cat_1').attr('checked', 'checked');
      
	  }
	  
    );


    $("#uab_2").toggle(
      
	  function () {
        
		$('input[type=checkbox].main_cat_2').attr('checked', '');
      
	  },
     
	  function () {
        
		$('input[type=checkbox].main_cat_2').attr('checked', 'checked');
      
	  }
	  
    );


    $("#uab_3").toggle(
      
	  function () {
        
		$('input[type=checkbox].main_cat_3').attr('checked', '');
      
	  },
     
	  function () {
        
		$('input[type=checkbox].main_cat_3').attr('checked', 'checked');
      
	  }
	  
    );


});
