function doForms() {
/*	$("#header input[type='text']").click(function () {
		if ($(this).val() == "Search") {
			$(this).val(null);
			}
		});
		
	$("#header input[type='text']").blur(function () {
		if (!$(this).val()) {
			$(this).val("Search");
			}
		});
*/
		
	$("#newsletter input[type='text']").focus(function () {
		if (($(this).val() == "Name") || ($(this).val() == "Email")) {
			$(this).select();
			}
		});
	}

$(document).ready(function() {
   doForms();
 });