jQuery(document).ready(

	function($)
	{
		
		$('.account-page').hide();

		$('li a.tab').bind( 'click', function(){ 
			
			$('a.tab').each( function(){
				$(this).parent().removeClass('active-tab');
			});
			
			$(this).parent().addClass('active-tab');
			
			$('.account-page').hide();

			var new_id = $(this).attr('data-page');

			$('#' + new_id).show();

		} );

		if( document.updating )
		{
			$('#tab-details').click();
		}
		else
		{
			$('#account-page-overview').show();
		}

});

