$(document).ready(function(){
	
	$('.tc').hide();
	$('#tab1').show();
	$('a[href=#tab1]').addClass('active');
	
	$('a.tl').click(function(){
		var wtab = $(this).attr('href').replace('#','');
		$('.tc').hide();
		$('#'+wtab).show();
		$('a.tl').removeClass('active');
		$('a[href=#'+wtab+']').addClass('active');
		return false;
	});
	
});