$( document ).ready(function(){
	$( '#add_result' ).toggle();
	$( '#username' ).focus(function(){
		$( this ).val( ( $( this ).val() == 'Username' ) ? '' : $( this ).val() );
	});
		
	$( '#username' ).blur(function(){
		$( this ).val( ( $( this ).val() == '' ) ? 'Username' : $( this ).val() );						   
	});
	
	$( '#password' ).focus(function(){
		$( this ).val( ( $( this ).val() == 'password' ) ? '' : $( this ).val() );
	});
		
	$( '#password' ).blur(function(){
		$( this ).val( ( $( this ).val() == '' ) ? 'password' : $( this ).val() );						   
	});

	

	// Secretly hide the form before submitting
	$( '#loginform' ).submit(function(){
		$( this ).fadeOut();
	});

	// Secretly hide the memberbar before logging out
	$( '#logout' ).click(function(){
		$( '#loggedinbox' ).fadeOut();
	});
});
