$(document).ready(function() {
	init();

	$('#profile-tabs').children('li').children('a').click(function(event) {
		event.preventDefault();

		// swap tab
		var tab = $(this).attr('rel');
		$('.profile-tab').hide();
		$('#' + tab).show();

		// change active
		$('#profile-tabs').children('li.active').removeClass('active');
		$(this).parent('li').addClass('active');
	});

});

function init() {
	$('.profile-tab').hide();

	var first_tab = $('#profile-tabs').children('li:first-child').children('a').attr('rel');
	$('#profile-tabs').children('li:first-child').addClass("active");
	$('#' + first_tab).show();
};
