$(function(){
	$("input[class='nf']").each(function(){
		if($(this).attr('value')=='')
			$(this).attr('value',$(this).attr('title'));
		$(this).focus(function(){
			if($(this).attr('value')==$(this).attr('title'))
				$(this).attr('value','');
		}).blur(function(){
			if($(this).attr('value')=='')
				$(this).attr('value',$(this).attr('title'));
		});
	});
	$("a[rel*='external'],a[rel*='nofollow']").each(function(){
		$(this).attr('target','_blank');
	});
});
