$(document).ready(function() {
	$('#ql-email, #ql-pass').focus(function() {
		if ($(this).hasClass('cleared')) return;
		
		$(this).val("").addClass('cleared');
	});
	
	$('#ql-email, #ql-pass').blur(function() {
		if ($(this).val() == "") {
			$(this).val($(this).attr('name').split('[')[1].split(']')[0]);
		}
		return;
	});
	
});