$(document).ready(function() {
	$('.expandLink').click(function(e) {
		$(this).blur();
		val = $(this).html();
		$('#copy a').parent().show();
		$('#copy a').not('.' + val).parent().hide();
		$('.expandLink.active').removeClass('active');
		$(this).addClass('active');
		e.preventDefault();
	});
})
