$(document).ready(function(){
	$('#commentform input').focus(function(){
		if($(this).attr('value') == $(this).attr('alt')){
			$(this).attr('value', '');
		}
	});

	$('#commentform input').blur(function(){
		if($(this).attr('value') == ''){
			$(this).val($(this).attr('alt'));
		}
	});
	$('#commentform textarea').focus(function(){
		if($(this).attr('value') == $(this).attr('alt')){
			$(this).attr('value', '');
		}
	});

	$('#commentform textarea').blur(function(){
		if($(this).attr('value') == ''){
			$(this).val($(this).attr('alt'));
		}
	});
});
