
$(document).ready(function(){
	
	$('span#showPassword').click(function () {
		$(this).toggle();
		$(this).next().toggle();
		$(this).next().next().toggle();
		$('ul#currentPassword').toggle();
		$('ul#editPassword').slideToggle();
	});	
	
	$('span#hidePassword').click(function () {
		$(this).toggle();
		$(this).prev().toggle();
		$(this).next().toggle();
		$('ul#currentPassword').toggle();
		$('ul#editPassword').slideToggle();
	});
	

	$('span#showUsername').click(function () {
		$(this).toggle();
		$(this).next().toggle();
		$(this).next().next().toggle();
		$('.changeAccount span').toggle();
		$('.changeAccount input').toggle();
	});
	
	$('span#hideUsername').click(function () {
		$(this).toggle();
		$(this).prev().toggle();
		$(this).next().toggle();
		$('.changeAccount span').toggle();
		$('.changeAccount input').toggle();
	});
	
	$('span#showAccount').click(function () {
		$(this).toggle();
		$(this).next().toggle();
		$(this).next().next().toggle();
		$('#editAccount ul span').toggle();
		$('#editAccount ul input').toggle();
		$('#editAccount ul select').toggle();
	});
	
	$('span#hideAccount').click(function () {
		$(this).toggle();
		$(this).prev().toggle();
		$(this).next().toggle();
		$('#editAccount ul span').toggle();
		$('#editAccount ul input').toggle();
		$('#editAccount ul select').toggle();
	});
	
});

