$(function(){
	$('.datasheettable:not(:first)').hide();
	$('.res_sd').show();
	$('#res_sd').addClass('catSelect');

	$('td.tablechange').click(function(){
		$('td.tablechange').removeClass('catSelect');
		$(this).addClass('catSelect');
		var tid = $(this).attr('id');
		$('.datasheettable:not(:first)').hide();
		$('.'+tid).show();
	});

	$('#select1').change(function(){
		$('#select2 option:first').attr('selected','selected');
	});
	$('#select2').change(function(){
		$('#select1 option:first').attr('selected','selected');
	});
	
});

function tbchange(vl){
	var tid = vl;
	$('.datasheettable:not(:first)').hide();
	$('.'+tid).show();
	
}
