$(function(){
	$('#formFirstName').focus(function(){
		if($(this).val() == 'first name'){
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == ''){
			$(this).val('first name');
		}
	});

	
	$('#formEmail').focus(function(){
		if($(this).val() == 'email'){
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == ''){
			$(this).val('email');
		}
	});

	$('#s').focus(function(){
		if($(this).val() == 'Type & enter to search'){
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == ''){
			$(this).val('Type & enter to search');
		}
	});

});
