(function($) {
$(function(){
	$('.emailfriend .text').each(function(){
		if ($(this).attr('title') != ""){
			$(this).attr('value', $(this).attr('title'));
			$(this).focus(function(){
				if ($(this).attr('value') == $(this).attr('title'))
					$(this).attr('value', "");
			});
			$(this).blur(function(){
				if ($(this).attr('value') == "")
					$(this).attr('value', $(this).attr('title'));
			});
		}
	});
});
})(jQuery);
