$(document).ready(function(){
	$('.section-tabs .tab-container:first').show();
	$('.section-tabs .tab-title a').click(function(){
		getHref = $(this).attr('t');
		
		$(this).parents('.section-tabs').find('.tab-container').hide();
		$(this).parents('.tab-title').find('li').removeClass('active');
		$(this).parents('.section-tabs').find(getHref).show();
		$(this).parent().addClass('active');
	});
});
