/*
 * formPreview.js 0.5
 * Copyright (c) 2007 C.M.A. Co.,Ltd.
 *
 * Last Added: 2009-02-19
 *
 */

$(function(){

	//コメント入力欄のプレビュー
	$('#name,#message','#form')
		.each(function(){
			this.inputChecker = function(){
				var id = '#'+$(this).attr('id')+'Preview';
				if($(this).attr('value')==''){
					$(id).html('未入力');
				}else{
					$(id).html($(this).val());
					$(id).html($(id).html().replace(/[\n]/g,'<br />'));
				}
			}
			this.inputChecker();
		})
		.bind('keydown keyup mousedown',function(){
			this.inputChecker();
		});

});
