var sidebar = $('sidebar');
var hackfields = document.createElement('fieldset');
var hackform = document.createElement('form');
hackform.id = 'hackform';
hackform.target = window.location;
hackform.onsubmit = 'return false';
var hackin = document.createElement('input');
hackin.type = 'text';
hackin.id = 'hackin';
hackin.value = 'Hack away!';
//var hackout = document.createElement('textarea');
//hackout.id = 'hackout';
sidebar.appendChild(hackfields);
hackfields.appendChild(hackform);
hackform.appendChild(hackin);
//sidebar.appendChild(hackout);