// -- http://www.pxl8.com/styling_inputs.html
// -- get all the input elements in the document
var x=document.getElementsByTagName('input') 	
   
   for (i=0; i<x.length;i++) {
     if (x[i].getAttribute('type')=='checkbox') {
       x[i].className='checkbox';
       }
     if (x[i].getAttribute('type')=='radio') {
       x[i].className='radio';
       }
     if (x[i].getAttribute('type')=='text') {
       x[i].className='text';
       }
     if (x[i].getAttribute('type')=='submit') {
       x[i].className='fbsubmit';
       }
     if (x[i].getAttribute('type')=='button') {
       x[i].className='button';
       }
   }
