$(document).ready(function(){
	$('ul.links-list a').click(function(){
		var currText = $(this).attr('href');
		$('ul.links-list li').removeClass('active');
		$('.content-area .tabs').hide();
		$(this).parent().addClass('active');
		$(currText).show();
		return false;
	});
});