document.write( '<form action="/faq/1,1951,18-_,00.html" class="search-form" method="get">' )
  document.write( '<table width="340" cellpadding="0" cellspacing="0" border="0" class="form-table">' )
    document.write( '<tr>' )
      document.write( '<td colspan="3">' )
        document.write( '<input type="text" class="input-text" name="q" value="" />' )
        document.write( '</td>' )
      document.write( '<td>' )
        document.write( '<button type="submit" class="input-submit button-hell"><span>Suchen</span></button>' )
        document.write( '</td>' )
      document.write( '</tr>' )
    document.write( '</table>' )
  document.write( '</form>' )
document.write( '<table width="340" cellpadding="0" cellspacing="0" border="0" class="form-table">' )
  document.write( '<tr>' )
    document.write( '<td>' )      
      document.write( '<input type="radio" class="radio-btn" name="form-switch" value="faq" checked="checked" /> in den FAQ' )
      document.write( '</td>' )
    document.write( '<td>' )
      document.write( '<input type="radio" class="radio-btn" name="form-switch" value="regular" /> auf der Webseite' )
      document.write( '</td>' )
    document.write( '<td>' )
      document.write( '&nbsp;' )
      document.write( '</td>' )
    document.write( '</tr>' )
  document.write( '</table>' )

$(document).ready(function(){
  if( $('.radio-btn:checked').val() == 'regular' ){
    $('.search-form').attr('action', '/suche');
    $('.input-text').attr('name', 'qt');
  } else if( $('.radio-btn:checked').val() == 'faq' ){
    $('.search-form').attr('action', '/faq/1,1951,18-_,00.html');
    $('.input-text').attr('name', 'q');
  }


  $('.radio-btn').change(function(){
    if( $(this).val() == 'regular' ){
      $('.search-form').attr('action', '/suche');
      $('.input-text').attr('name', 'qt');
    } else if( $(this).val() == 'faq' ){
      $('.search-form').attr('action', '/faq/1,1951,18-_,00.html');
      $('.input-text').attr('name', 'q');
    }
  });
});

