$(function formClear () {	
	var textContent1 = $('#search_input').val();
	$('#search_input').focus(function() {
		if (this.value == textContent1) {
			$(this).val('');
		};
	}).blur(function() {
		if (this.value == '') {
			$(this).val(textContent1);
		};
	});
	var textContent2 = $('#email_input').val();
	$('#email_input').focus(function() {
		if (this.value == textContent2) {
			$(this).val('');
		};
	}).blur(function() {
		if (this.value == '') {
			$(this).val(textContent2);
		};
	});
});
