jQuery(document).ready(function($) {
	$("#bttns a").click(function () {
		$("#bttns a.rt").removeClass('active');
		$(this).addClass('active');
		var t = $(this).attr('href');
		$('#changing .chy').removeClass('see');
		$(t).addClass('see');
		return false;
  });
});
