$(document).ready(function()
{
  $('input[type=radio]')
    .checkBox()
    .bind('checkBoxchange', function(e, ui){
      $('.poll form').get(0).submit();
    });;

  $('input[type=text], textarea')
    .each(function(){
      if($(this).attr('holder'))
      {
        $(this).val($(this).attr('holder'));
      }
    })
    .focus(function(){ 
      if($(this).val() == $(this).attr('holder'))
      {
        $(this).val('');
      }
    })
    .blur(function(){
      if($(this).val() == '')
      {
        $(this).val($(this).attr('holder'));
      } 
    });
});
