$().ready(function(){
	var textboxes = $('.textbox');
	var value = "";
	
	textboxes.focus(function(){
		if($(this).val() == 'Name' || $(this).val() == 'Email'){
			value = $(this).val();
			$(this).val("");
		}
	});

	textboxes.blur(function(){
		
		if($(this).val() == ''){
			$(this).val(value);
			value = "";
		}
	});
});

