$(document).ready(function() {
	$('#login .front a').click(function() {
		$('#login').addClass('flip');
	});
	$('#login .back a').click(function() {
		$('#login').removeClass('flip');
	});

	$('input[type="text"], textarea').focus(function(){
		if( $(this).val() == $(this).attr('title') ) $(this).val('');
	}).blur(function(){
		if( $(this).val() == '' ) $(this).val( $(this).attr('title') );
	});
});

