$(function() {
	$('.tabs a').click(function() {
		$('.tabs .active').removeClass('active');
		$(this).parent().addClass('active');
		$('.tab-content').hide();
		$('#'+$(this).attr('rel')).show();
		return false;
	});
});
