
if(Drupal.jsEnabled) {
  $(document).ready(
    function() {
//alert('Ready');

			$('#t_value_1').click(function() {
//				alert('clicked');
				$('#t_value_div2').hide('fast');
				$('#t_value_div1').show('slow');
				$('#t_value_2').removeAttr("class");
				$('#t_value_1').attr("class", "active");
				$('#t_value_a2').removeAttr("class");
				$('#t_value_a1').attr("class", "active");
			});
			$('#t_value_2').click(function() {
				$('#t_value_div1').hide('fast');
				$('#t_value_div2').show('slow');
				$('#t_value_1').removeAttr("class");
				$('#t_value_2').attr("class", "active");
				$('#t_value_a1').removeAttr("class");
				$('#t_value_a2').attr("class", "active");
			});
		}
  );
	
	
}

