
$().ready(function(){
    var post=new Array();
    $('.post_dump input').each(function(){
	post[$(this).attr('name')]=$(this).attr('value');
    });

    $('form[name='+post['form_name']+'] input').each(function(){
	if (post[$(this).attr('name')]!==undefined)
	{
	    if ($(this).attr('type')=='text') $(this).attr('value',post[$(this).attr('name')]);
	    if ($(this).attr('type')=='checkbox') $(this).attr('checked','checked');
	    if ($(this).attr('type')=='radio'&&post[$(this).attr('name')]==$(this).attr('value')) $(this).attr('checked','checked');
	}
    });

    $('form[name='+post['form_name']+'] textarea').each(function(){
	if (post[$(this).attr('name')]!==undefined)
	{
	    $(this).html(post[$(this).attr('name')]);
	}
    });
});

