$(document).ready(function() {

	// tab 1
	$('.t1').click(function() {
		$('.tc1').show();
		$('.tc2, .tc3').hide();
		
		$(this).css('background', '#000000');
		$(this).css('color', '#ededed');
		$('.t2, .t3').css('background', '#ededed');
		$('.t2, .t3').css('color', '#000000');
	});

	// tab 2
	$('.t2').click(function() {
		$('.tc2').show();
		$('.tc1, .tc3').hide();
		
		$(this).css('background', '#000000');
		$(this).css('color', '#ededed');
		$('.t1, .t3').css('background', '#ededed');
		$('.t1, .t3').css('color', '#000000');
	});

	// tab 3
	$('.t3').click(function() {
		$('.tc3').show();
		$('.tc1, .tc2').hide();
		
		$(this).css('background', '#000000');
		$(this).css('color', '#ededed');
		$('.t1, .t2').css('background', '#ededed');
		$('.t1, .t2').css('color', '#000000');
	});

});