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