$( function() {

	// Login form
	$( "#user_name_top" ).focus( function(){ if( this.value == 'Username' ){ this.value = ''; }});
	$( "#user_name_top" ).blur( function(){ if( this.value == '' ){ this.value = 'Username'; }});
	$( "#password_top" ).focus( function(){ if( this.value == 'Password' ){ this.value = ''; this.type='password'; }});
	$( "#password_top" ).blur( function(){ if( this.value == '' ){ this.value = 'Password'; this.type='text'; }});

});
