$(document).ready(function(){
	$("input.subscribe, input#search").each(function() {  
		$(this).val($(this).attr("title"));  
		if($.trim($(this).val()) == "")  
		$(this).val($(this).attr("title"));  
		$(this)  
		.focus(function() {  
			if($(this).val() == $(this).attr("title")) $(this).val(""); 
		})  
		.blur(function() {  
			if($.trim($(this).val()) == "") $(this).val($(this).attr("title"));  
		});  
	}); 
});
